-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.15 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": "stock-chart",
"jest": {
"verbose": true
},
"version": "1.0.0",
"description": "The stock chart on Robinhood",
"author": "Muhammad Shehu",
"license": "MIT",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"start": "webpack --mode development --watch",
"start:server": "nodemon server/index.js",
"build": "webpack --mode production",
"seed": "node database/seed.js",
"test": "jest --verbose",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --colors"
},
"dependencies": {
"@babel/polyfill": "^7.4.0",
"artillery": "^1.6.0-27",
"axios": "^0.21.1",
"babel-runtime": "^6.26.0",
"bluebird": "^3.5.4",
"body-parser": "^1.18.3",
"cassandra-driver": "^4.1.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"faker": "^4.1.0",
"jest-environment-node": "^24.5.0",
"jest-to-match-shape-of": "^1.2.0",
"jquery": "^3.5.0",
"mongodb": "^3.2.2",
"mongoose": "^5.7.5",
"newrelic": "^5.7.0",
"path": "^0.12.7",
"prop-types": "^15.7.2",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"react-odometerjs": "^2.1.1",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"redis": "^2.8.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-transform-regenerator": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-preset-airbnb": "^3.2.1",
"css-loader": "^2.1.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"eslint": "5.3.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-react": "^7.11.0",
"file-loader": "^3.0.1",
"jest": "^24.5.0",
"mongodb-memory-server": "^4.2.1",
"style-loader": "^0.23.1",
"supertest": "^4.0.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
}
}