-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.66 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
{
"name": "reviews-sdc",
"version": "",
"description": "",
"author": "James Dunn/Djason I.",
"license": "",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"build": "webpack --watch --mode development",
"start": "nodemon ./server/app.js",
"seed": "node ./generator/seed.js",
"csvdata": "node ./generator/csvdatagenerator.js --max-old-space-size",
"test": "jest --verbose"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/runtime": "^7.6.3",
"axios": "^0.19.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.6",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-polyfill": "^6.26.0",
"cassandra-driver": "^4.3.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fast-csv": "^3.4.0",
"mongodb": "^3.3.2",
"mongoose": "^5.7.4",
"newrelic": "^6.1.0",
"nodemon": "^1.19.3",
"pg": "^7.12.1",
"pg-copy-streams": "^2.2.2",
"promise": "^8.0.3",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-star-rating-component": "^1.4.1",
"react-test-renderer": "^16.10.2",
"styled-components": "^4.4.1"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.6",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"jest": "^24.9.0",
"jest-fetch-mock": "^2.1.2",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
}
}