-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
32 lines (32 loc) · 870 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
{
"name": "tv-synopsis",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "./node_modules/.bin/nodemon index.js",
"eslint": "./node_modules/.bin/eslint --format codeframe .",
"lint": "npm run eslint && npm run puglint",
"lint:fix": "./node_modules/.bin/eslint --fix --format codeframe .",
"puglint": "./node_modules/.bin/pug-lint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/stackeducation/tv-synopsis.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/stackeducation/tv-synopsis/issues"
},
"homepage": "https://github.com/stackeducation/tv-synopsis#readme",
"dependencies": {
"express": "^4.17.1",
"pug": "^2.0.4"
},
"devDependencies": {
"eslint": "^6.8.0",
"nodemon": "^2.0.2",
"pug-lint": "^2.6.0"
}
}