-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "reman",
"version": "1.0.0",
"private": true,
"description": "e-commerce",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node server/index.js",
"dev": "NODE_ENV=development nodemon server/index.js",
"test": "NODE_ENV=test jest",
"client": "cd client && npm start",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"env2": "^2.2.2",
"express": "^4.17.1",
"joi": "^17.4.2",
"joi-password": "^1.6.0",
"jsonwebtoken": "^8.5.1",
"pg": "^8.7.1",
"query-string": "^7.0.1",
"react-transition-group": "^4.4.2"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"nodemon": "^2.0.13",
"supertest": "^6.1.6"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}