-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
35 lines (35 loc) · 959 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
{
"name": "assign3",
"version": "1.0.0",
"description": "Stanford CS 253 Assignment 3",
"main": "index.js",
"scripts": {
"lint": "standard | snazzy && standard-markdown **/*.md",
"lint-fix": "standard --fix | snazzy && standard-markdown **/*.md --fix",
"start": "node index.js",
"test": "npm run lint",
"watch": "nodemon --ext js,json,css,ejs,md -- --no-open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stanford-web-security/assign3.git"
},
"author": "",
"license": "MIT",
"private": true,
"bugs": {
"url": "https://github.com/stanford-web-security/assign3/issues"
},
"homepage": "https://github.com/stanford-web-security/assign3#readme",
"dependencies": {
"express": "^4.17.1",
"minimist": "^1.2.5",
"open": "^8.3.0"
},
"devDependencies": {
"nodemon": "^2.0.14",
"snazzy": "^9.0.0",
"standard": "^16.0.4",
"standard-markdown": "^7.1.0"
}
}