-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
73 lines (73 loc) · 1.9 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
{
"name": "node-agenda-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/register": "^7.9.0",
"acorn-stage3": "^4.0.0",
"async-mutex": "^0.3.1",
"body-parser": "^1.19.0",
"bootstrap": "^4.4.1",
"concurrently": "^6.0.0",
"date-fns": "^2.21.2",
"deep-equal": "^2.0.2",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"express-ws": "^4.0.0",
"jquery": "^3.4.1",
"ldapjs": "^2.0.0",
"md5": "^2.2.1",
"mustache": "^4.0.1",
"node-watch": "^0.7.1",
"nodemon": "^2.0.2",
"popper.js": "^1.16.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-json-tree": "^0.15.0",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"react-scripts": "4.0.3",
"redux": "^4.0.5",
"rimraf": "^3.0.2",
"yaml": "^1.9.2"
},
"scripts": {
"dev": "node scripts/dev.js",
"pull": "node scripts/pull.js",
"test": "react-scripts test --detectOpenHandles",
"demo": "NODE_ENV=test concurrently --kill-others-on-fail yarn:server yarn:client",
"client": "react-scripts start",
"server": "node nodemon.js",
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"eslint": "node ./node_modules/eslint/bin/eslint.js src"
},
"bin": "scripts/dev.js",
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "http://127.0.0.1:3001",
"devDependencies": {
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.0.6",
"react-test-renderer": "^17.0.2"
}
}