forked from cipherzzz/vertigo-cicd-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.56 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
{
"name": "typescript-gae-ci-example",
"version": "0.0.1",
"description": "A Typescript - Google Application Engine - Continuous Integration Example ",
"main": "/dist/app.js",
"scripts": {
"deploy": "npm run build && gcloud app deploy --project mark-dev-project",
"start": "node ./dist/app.js",
"lint": "tslint --project tsconfig.json -t codeFrame",
"build": "tsc",
"watch": "tsc --watch",
"precommit": "npm run build && lint-staged && npm run lint",
"test": "mocha --colors --recursive --require ts-node/register --watch-extensions ts \"src/**/*spec.ts\""
},
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^6.0.0",
"express": "^4.16.3",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"prettier": "^1.14.2"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/chai-as-promised": "^7.1.0",
"@types/express": "^4.16.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.5.3",
"@types/sinon-chai": "^3.2.0",
"@types/supertest": "^2.0.5",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"mocha": "^5.2.0",
"sinon": "^6.1.4",
"sinon-chai": "^3.2.0",
"supertest": "^3.1.0",
"ts-node": "^7.0.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.14.0",
"tslint-config-standard": "^7.1.0",
"tslint-microsoft-contrib": "^5.1.0",
"typescript": "^2.9.2"
},
"lint-staged": {
"*.ts": [
"prettier --write --print-width 80 --tab-width 4 --no-semi --single-quote --trailing-comma all --arrow-parens always",
"git add"
]
}
}