forked from RafaelGoulartB/nodejs-ecommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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": "ecommerce-quantum",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "./node_modules/nodemon/bin/nodemon.js index.js",
"start": "node index"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RafaelGoulartB/Ecommerce-Quantum.git"
},
"author": "Rafael GoulartB",
"license": "MIT",
"bugs": {
"url": "https://github.com/RafaelGoulartB/Ecommerce-Quantum/issues"
},
"homepage": "https://github.com/RafaelGoulartB/Ecommerce-Quantum#readme",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.3",
"consign": "^0.1.6",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"csurf": "^1.9.0",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"express-handlebars": "^3.0.2",
"express-session": "^1.15.6",
"express-validator": "^5.3.1",
"mysql": "^2.16.0",
"nodemon": "^1.19.4"
},
"devDependencies": {
"eslint": "^5.15.3",
"eslint-config-google": "^0.12.0"
}
}