-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.36 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.36 KB
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
{
"name": "ada",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server/server.js",
"build": "webpack",
"dev": "nodemon ./server/server.js & webpack-dev-server --hot --inline --watch",
"test": "jest --config jest.config.js",
"test:watch": "jest --watch"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.7.0",
"@babel/plugin-transform-modules-commonjs": "^7.7.0",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"babel-core": "^6.26.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"dotenv": "^8.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"enzyme-to-json": "^3.4.3",
"express": "^4.17.1",
"fibers": "^4.0.2",
"jest": "^24.9.0",
"node-sass": "^4.13.0",
"nodemon": "^1.19.4",
"path": "^0.12.7",
"sass": "^1.23.3",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"pg": "^7.12.1",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-router-dom": "^5.1.2",
"redis": "^2.8.0"
}
}