-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.24 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "buying-for-schools-cms",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:8000",
"nodemonConfig": {
"watch": [
"server.js",
"api/**/*.*"
],
"legacyWatch": true
},
"jshintConfig": {
"asi": true,
"esversion": 9,
"maxcomplexity": 7
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"eslint": "^6.1.0",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"glob-parent": "^6.0.2",
"govuk-frontend": "^2.13.0",
"immutable": "^4.0.0-rc.12",
"jsonwebtoken": "^8.5.1",
"lodash.template": ">=4.5.0",
"md5": "^2.2.1",
"moment": "^2.24.0",
"mongoose": "^5.13.14",
"query-string": "^6.8.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.1.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"sass": "^1.52.3",
"serve-static": "^1.14.1",
"url-join": "^4.0.1"
},
"scripts": {
"start": "node server.js",
"start:dev": "nodemon server.js & react-scripts --openssl-legacy-provider start",
"build": "react-scripts --openssl-legacy-provider build",
"test": "npm run test:ui",
"test:jshint": "jshint api",
"test:api": "mocha -t 10000 api/test/*.test.js --exit",
"test:ui": "mocha -t 10000 testing-ui/*.test.js --exit",
"test:bdd": "./node_modules/.bin/cucumber-js -f node_modules/cucumber-pretty --exit",
"test:build:bdd": "react-scripts --openssl-legacy-provider build && ./node_modules/.bin/cucumber-js -f node_modules/cucumber-pretty --exit"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"chai": "^4.2.0",
"cucumber": "^5.1.0",
"cucumber-pretty": "^1.5.2",
"jest-cli": "^24.8.0",
"jest-junit-reporter": "^1.1.0",
"jshint": "^2.10.2",
"mocha": "^6.1.4",
"node-env-run": "^3.0.2",
"nodemon": "^1.19.1",
"puppeteer": "^1.19.0",
"sinon": "^14.0.0",
"superagent": "^5.1.0"
}
}