-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 784 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 784 Bytes
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
{
"name": "inventory-server",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint *.js",
"check": "npm ls > /dev/null"
},
"pre-commit": [
"lint",
"check"
],
"author": "Alex Miller",
"license": "ISC",
"dependencies": {
"ejs": "^2.5.7",
"express": "^4.15.4",
"express-session": "^1.15.5",
"googleapis": "^21.3.0",
"jquery": "^3.2.1",
"marked": "^0.3.19",
"qr-image": "^3.2.0",
"url-regex": "^4.1.1",
"uuid-regexp": "^0.3.0"
},
"devDependencies": {
"eslint": "^4.6.1",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"pre-commit": "^1.2.2"
}
}