-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.41 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
{
"name": "node-typescript-boilerplate",
"version": "0.0.0",
"description": "Minimalistic boilerplate to quick-start Node.js development in TypeScript.",
"engineStrict": true,
"engines": {
"node": ">= 8.9.0"
},
"devDependencies": {
"@types/jest": "~22.0.1",
"@types/node": "^8.10.29",
"jest": "~22.1.1",
"rimraf": "~2.6.2",
"tslint": "~5.9.1",
"tslint-microsoft-contrib": "~5.0.2",
"tsutils": "~2.18.0",
"typescript": "~2.6.2"
},
"scripts": {
"shippable-test": "jest",
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"watch": "tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"pretest": "npm run lint",
"test": "npm run test-only",
"test-only": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "Jakub Synowiec <github@jakubsynowiec.info>",
"license": "APLv2",
"repository": {
"type": "git",
"url": "https://github.com/jsynowiec/node-typescript-boilerplate.git"
},
"bugs": {
"url": "https://github.com/jsynowiec/node-typescript-boilerplate/issues"
},
"homepage": "https://github.com/jsynowiec/node-typescript-boilerplate#readme",
"dependencies": {
"copy-paste": "^1.3.0",
"dateformat": "^3.0.2",
"googleapis": "^27.0.0",
"mysql": "^2.15.0",
"promise-mysql": "^3.2.0",
"steem": "^0.7.1",
"tslib": "~1.8.1"
}
}