-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.84 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
{
"name": "reservations",
"version": "",
"description": "",
"author": "",
"license": "",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"databuild": "node ./database-sequelize/seed.js",
"start": "nodemon ./server/server.js",
"build": "npx webpack --watch",
"test": "jest --ci --runInBand --reporters=default --reporters=jest-junit"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"artillery": "^1.6.0-28",
"axios": "^0.19.0",
"babel-jest": "^24.9.0",
"body-parser": "^1.19.0",
"cassandra-driver": "^4.1.0",
"chai": "^4.2.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"faker": "^4.1.0",
"jest-junit": "^8.0.0",
"knex": "^0.19.5",
"morgan": "^1.9.1",
"mysql2": "^1.6.5",
"newrelic": "^5.11.0",
"nodemon": "^1.19.1",
"pg": "^7.12.1",
"pg-hstore": "^2.3.3",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^7.1.0",
"redis": "^2.8.0",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"sequelize": "^5.18.4",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-redux": "^0.2.1",
"eslint": "^6.2.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"jest": "^24.9.0",
"mysql": "^2.17.1",
"redux-test-utils": "^0.3.0",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7"
}
}