-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
36 lines (36 loc) · 885 Bytes
/
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
{
"name": "ecommerce-demo",
"version": "1.0.0",
"description": "Demonstraton of an e-commerce website using AngularJS, NodeJS and ExpressJS",
"main": "server.js",
"scripts": {
"preinstall": "npm install bower -g",
"postinstall": "bower install",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server",
"lint": "eslint client/app/"
},
"keywords": [
"e-commerce",
"nodejs",
"angularjs",
"expressjs",
"jennifer",
"bland"
],
"author": "Jennifer Bland <[email protected]>",
"license": "MIT",
"dependencies": {
"body-parser": "^1.17.2",
"bower": "^1.8.0",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"mongodb": "^2.2.26",
"morgan": "^1.8.1"
},
"devDependencies": {
"eslint": "^4.1.1",
"eslint-config-angular": "^0.5.0",
"eslint-plugin-angular": "^3.0.0"
}
}