-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
47 lines (47 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
{
"name": "typescript-node-starter",
"version": "0.0.4",
"description": "Bare bones project with all that you need to start a node app",
"main": "dist/index.js",
"author": "Hernan Rajchert <[email protected]>",
"license": "MIT",
"scripts": {
"start": "tsns run",
"test": "run-s build-and:test",
"tdd": "run-p watch:*",
"build": "tsns build",
"docker:build": "docker build -t ${npm_package_name}:${npm_package_version} .",
"docker:run": "docker run --rm ${npm_package_name}:${npm_package_version}",
"commitmsg": "validate-commit-msg",
"precommit": "run-s lint:* build",
"prepush": "run-s build-and:test",
"postinstall": "npm run -s build && tsns init",
"lint:ts": "tslint --project tsconfig.json",
"lint-and-fix:-ts": "tslint --project tsconfig.json --fix",
"build-and:test": "run-s build test-once",
"build-and:start": "run-s build start",
"watch:ts": "tsc -w",
"watch:test": "mocha dist/**/*.test.js -w --colors --inspect --growl",
"test-once": "mocha dist/**/*.test.js --inspect --colors",
"contributors-add": "all-contributors add",
"contributors-generate": "all-contributors generate"
},
"dependencies": {
"tsns": "0.0.18",
"typescript": "3.6.4"
},
"devDependencies": {
"@types/chai": "4.1.4",
"@types/mocha": "5.2.5",
"@types/node": "^12.12.5",
"all-contributors-cli": "^6.4.0",
"chai": "4.1.2",
"husky": "0.14.3",
"mocha": "5.2.0",
"npm-run-all": "4.1.3",
"sinon": "6.1.5",
"tslint": "5.11.0",
"tslint-config-acamica": "2.0.0",
"validate-commit-msg": "2.14.0"
}
}