-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.64 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.64 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
53
54
55
56
{
"name": "node-commerce",
"version": "1.1.0",
"author": "Yassine belkaid",
"email": "yassine.belkaid87@gmail.com",
"description": "Node, React && GraphQL e-commerce project",
"main": "index.js",
"scripts": {
"test": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint ./",
"start": "nodemon --exec babel-node index.js"
},
"engines": {
"node": "12.4.0"
},
"license": "MIT",
"dependencies": {
"apollo-server-express": "^2.14.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"connect-flash": "^0.1.1",
"connect-mongodb-session": "^2.1.1",
"cors": "^2.8.5",
"csurf": "^1.10.0",
"dotenv": "^7.0.0",
"ejs": "^2.6.1",
"express": "^4.17.3",
"express-session": "^1.16.1",
"graphql": "^14.5.3",
"he": "^1.2.0",
"helmet": "^3.18.0",
"jsonwebtoken": "^8.5.1",
"lodash": ">=4.17.21",
"method-override": "^3.0.0",
"mongoose": "^5.7.5",
"mongoose-timestamp": "^0.6.0",
"multer": "^1.4.1",
"node-fetch": "^3.1.1",
"validator": "^13.7.0"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.3",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.7.1",
"nodemon": "^1.18.11"
}
}