-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.59 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "netlify-local",
"version": "1.8.0",
"description": "Local Netlify service emulation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"netlify-local": "dist/cli.js"
},
"repository": "https://github.com/8eecf0d2/netlify-local.git",
"author": "8eecf0d2 <8eecf0d23d248b0e6223b8a10ddbf1@gmail.com>",
"license": "ISC",
"scripts": {
"watch": "tsc --project ./tsconfig.json --watch",
"build": "tsc --project ./tsconfig.json",
"pretest": "yarn run build",
"test": "ts-mocha --project ./test/tsconfig.json test/**/*.ts",
"lint": "tslint -c tslint.json src/**/*.ts"
},
"devDependencies": {
"@types/assert": "^1.4.0",
"@types/body-parser": "^1.17.0",
"@types/chalk": "^2.2.0",
"@types/express": "^4.16.0",
"@types/get-port": "^4.0.0",
"@types/git-branch": "^2.0.0",
"@types/jsonwebtoken": "^8.3.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.11.7",
"@types/serve-static": "^1.13.2",
"@types/webpack": "^4.4.16",
"@types/webpack-hot-middleware": "^2.16.4",
"assert": "^1.4.1",
"mocha": "^5.2.0",
"ts-mocha": "^2.0.0",
"tslint": "^5.12.0",
"typescript": "^3.1.3",
"webpack-hot-middleware": "^2.24.3"
},
"dependencies": {
"body-parser": "^1.18.3",
"chalk": "^2.4.1",
"commander": "^2.19.0",
"express": "^4.16.4",
"express-http-proxy": "^1.4.0",
"get-port": "^4.0.0",
"git-branch": "^2.0.1",
"jsonwebtoken": "^8.3.0",
"serve-static": "^1.13.2",
"toml": "^3.0.0",
"url-pattern": "^1.0.3",
"webpack": "^4.20.2"
},
"files": [
"dist"
]
}