-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 899 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
37
38
39
40
{
"name": "create-koop-app",
"version": "1.0.0",
"description": "Koop CLI server",
"main": "server.js",
"scripts": {
"start": "node src/server.js",
"start:dev": "PORT=3000 node src/server.js",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haoliangyu/create-koop-app.git"
},
"author": {
"name": "Haoliang Yu",
"email": "hyu@esri.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/haoliangyu/create-koop-app/issues"
},
"homepage": "https://github.com/haoliangyu/create-koop-app#readme",
"dependencies": {
"@koopjs/cli": "^0.3.2",
"archiver": "^3.0.0",
"express": "^4.16.4"
},
"devDependencies": {
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"standard": "^12.0.1"
},
"lint-staged": {
"*.js": [
"standard --fix",
"git add"
]
}
}