-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.25 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@staticdeploy/app-server",
"description": "Serve and apply runtime configuration to static apps",
"version": "4.1.0",
"publishConfig": {
"access": "public"
},
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"bin": {
"app-server": "./bin/app-server.js"
},
"files": [
"bin",
"lib"
],
"author": "Paolo Scanferla <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/staticdeploy/app-server",
"repository": {
"type": "git",
"url": "https://github.com/staticdeploy/app-server.git"
},
"bugs": {
"url": "https://github.com/staticdeploy/app-server/issues"
},
"keywords": [
"static",
"server",
"configuration",
"create-react-app"
],
"scripts": {
"compile": "tsc",
"prettier": "prettier src/**/*.ts test/**/*.ts docs/**/*md",
"prettify": "yarn prettier --write",
"lint:prettier": "yarn prettier --list-different",
"lint:tslint": "tslint src/**/*.ts test/**/*.ts",
"lint": "yarn lint:prettier && yarn lint:tslint",
"test": "NODE_ENV=test mocha --exit -r ts-node/register --extension ts 'test/**/*.ts'",
"coverage": "nyc --all yarn test",
"publish-coverage": "codecov",
"start": "node bin/app-server.js"
},
"dependencies": {
"@staticdeploy/core": "^0.15.0",
"@staticdeploy/serve-static": "^0.15.0",
"bunyan": "^1.8.12",
"bunyan-middleware": "^1.0.0",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"lodash": "^4.17.15",
"yargs": "^15.1.0"
},
"devDependencies": {
"@types/bunyan": "^1.8.6",
"@types/chai": "^4.2.7",
"@types/cheerio": "^0.22.15",
"@types/express": "^4.17.2",
"@types/fs-extra": "^8.0.1",
"@types/lodash": "^4.14.149",
"@types/mocha": "^5.2.7",
"@types/supertest": "^2.0.8",
"@types/uuid": "^3.4.7",
"@types/yargs": "^15.0.2",
"chai": "^4.2.0",
"cheerio": "^1.0.0-rc.3",
"codecov": "^3.6.2",
"create-fs-tree": "^1.0.0",
"decache": "^4.5.1",
"husky": "^4.2.1",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"supertest": "^4.0.2",
"ts-node": "^8.6.2",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.5",
"uuid": "^3.4.0",
"vm2": "^3.8.4"
}
}