-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.07 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
{
"name": "syllabuses",
"version": "",
"description": "",
"author": "",
"license": "",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"start": "nodemon server/index.js",
"test": "jest",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"test-dev": "jest --watch",
"react-dev": "webpack --watch",
"build": "webpack",
"build-prod": "webpack --mode=production",
"seed": "node ./db/data/syllabusesGenerator.js",
"insert": "node ./db/data/syllabusesInserter.js"
},
"dependencies": {
"bluebird": "^3.5.1",
"body-parser": "^1.19.0",
"cassandra-driver": "^4.6.2",
"cluster": "^0.7.7",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"event-stream": "^4.0.1",
"express": "^4.17.1",
"helmet": "^4.6.0",
"mongoose": "^5.11.19",
"newrelic": "^7.4.0",
"path": "^0.12.7",
"pg": "^8.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@testing-library/dom": "^7.30.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.0.6",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"coveralls": "^3.1.0",
"css-loader": "^5.1.2",
"csv-write-stream": "^2.0.0",
"eslint": "^7.21.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"faker": "^5.4.0",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"nodemon": "^2.0.7",
"react-test-renderer": "^17.0.1",
"regenerator-runtime": "^0.13.7",
"style-loader": "^2.0.0",
"superagent": "^6.1.0",
"supertest": "^6.1.3",
"webpack": "^5.24.4",
"webpack-cli": "^4.5.0"
},
"jest": {
"automock": false,
"setupFiles": [
"./__test__/setupJest.js"
]
}
}