-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.46 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@nhsuk/user-feedback-form",
"version": "2.2.4",
"description": "A form for collecting user feedback",
"main": "dist/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "webpack",
"build:production": "webpack --mode=production",
"lint": "eslint .",
"start": "npm run watch & npm run testserver",
"test": "npm run build && start-server-and-test testserver http://localhost:8080 test-all",
"test-all": "npm-run-all --continue-on-error test:*",
"test:integration": "jest -c tests/integration/jest.config.js",
"testserver": "./node_modules/.bin/http-server",
"watch": "webpack --watch",
"prepare": "husky install"
},
"author": "[email protected]",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.13.10",
"babel-loader": "^8.2.2",
"css-loader": "^4.3.0",
"eslint": "^7.18.0",
"eslint-config-nhsuk": "^1.0.0",
"html-loader": "^0.5.5",
"http-server": "^0.12.3",
"husky": "^8.0.3",
"jest": "^25.5.4",
"jest-environment-puppeteer": "^4.4.0",
"jest-puppeteer": "^4.4.0",
"nhsuk-frontend": "^6.1.2",
"npm-run-all": "^4.1.5",
"puppeteer": "^2.1.1",
"start-server-and-test": "^1.12.0",
"style-loader": "^1.3.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"uuid": "^8.3.2"
}
}