-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.3 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
{
"name": "nodeshop",
"version": "1.0.0",
"description": "shop app using react and node",
"main": "server.js",
"engines": {
"node": "12.18.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "node index.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"client": "npm start --prefix client",
"start": "node index.js",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mateki0/react-node-shop.git"
},
"keywords": [
"shop"
],
"author": "Mateusz Bętka",
"license": "ISC",
"bugs": {
"url": "https://github.com/mateki0/react-node-shop/issues"
},
"homepage": "https://github.com/mateki0/react-node-shop#readme",
"dependencies": {
"@types/jest": "^26.0.15",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.19.0",
"concurrently": "^5.2.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"mapbox-gl": "^1.12.0",
"mongoose": "^5.9.15",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"websocket-extensions": "^0.1.4"
}
}