-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 2.11 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
{
"name": "bitchin-kitchen",
"version": "1.0.0",
"description": "Bitchin Kitchen Web App",
"main": "server.js",
"scripts": {
"test": "mocha",
"build": "npx webpack --config webpack.config.js --watch",
"start": "node server.js",
"client": "webpack-dev-server --mode development --devtool inline-source-map --hot",
"server": "nodemon src/server/index.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "npx webpack --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rperez2021/bitchin-kitchen.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rperez2021/bitchin-kitchen/issues"
},
"homepage": "https://github.com/rperez2021/bitchin-kitchen#readme",
"dependencies": {
"axios": "^0.18.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"body-parser": "^1.18.3",
"bootstrap": "^4.1.1",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"firebaseui": "^3.0.0",
"jquery": "^3.3.1",
"node-cmd": "^3.0.0",
"pg": "^7.4.3",
"popper.js": "^1.14.3",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-infinite": "^0.13.0",
"react-modal": "^3.4.4",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-stars": "^2.2.5",
"sequelize": "^4.37.8",
"util": "^0.10.3"
},
"devDependencies": {
"autoprefixer": "^8.5.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"concurrently": "^3.5.1",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"mocha": "^5.2.0",
"nightmare": "^3.0.1",
"node-sass": "^4.9.0",
"postcss-loader": "^2.1.5",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"webpack": "^3.12.0",
"webpack-cli": "^3.0.3",
"webpack-dev-server": "^3.1.4"
},
"directories": {
"test": "test"
}
}