-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
56 lines (56 loc) · 1.5 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
{
"name": "nerds-starterpack",
"version": "2.0.0",
"description": "React, Redux, Express, Postgres Boilerplate",
"main": "server/main.js",
"scripts": {
"start": "nodemon --watch server -e js,html server/app/main.js",
"build": "webpack --watch",
"db-init": "pg-init name_of_db",
"seed": "node seed.js",
"test": "jest"
},
"author": "Damon Ye",
"license": "MIT",
"dependencies": {
"axios": "^0.20.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"passport": "^0.4.1",
"pg": "^8.3.3",
"pg-hstore": "^2.3.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"sequelize": "^6.3.4"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"css-loader": "^4.2.2",
"enzyme": "^3.11.0",
"faker": "^5.1.0",
"fs-misc": "^2.0.0",
"jest": "^26.4.2",
"morgan": "^1.10.0",
"node-sass": "^4.14.1",
"nodemon": "^2.0.4",
"sass-loader": "^10.0.1",
"style-loader": "^1.2.1",
"supertest": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}