-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.33 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.33 KB
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
{
"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": "~23.3.1",
"@types/node": "~8.10.25",
"jest": "~23.5.0",
"prettier": "~1.14.2",
"rimraf": "~2.6.2",
"ts-jest": "~23.1.3",
"tslint": "~5.11.0",
"tslint-config-prettier": "1.14.0",
"tslint-microsoft-contrib": "~5.2.0",
"tsutils": "~3.0.0",
"typescript": "~3.0.1"
},
"scripts": {
"run": "node build/src/main",
"run-client": "node build/src/client",
"run-t": "node build/src/tt",
"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",
"dependencies": {
"dotenv": "^6.0.0",
"dumper.js": "^1.1.1",
"nanoid": "^1.2.1",
"rethinkdb": "^2.3.3",
"serialize-javascript": "^1.5.0",
"sockjs": "^0.3.19",
"sockjs-client": "^1.1.5",
"tslib": "~1.9.3"
}
}