forked from kent7301/app-archivist-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 974 Bytes
/
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
{
"name": "xyo-archivist",
"version": "0.12.0",
"description": "A workspace to aggregated nodejs XYO projects",
"main": "index.js",
"author": "Ryan Pillsbury",
"license": "MIT",
"private": true,
"scripts": {
"docker-image": "./scripts/docker-image.sh",
"build": "tsc -b packages",
"release": "lerna publish",
"test": "export NODE_ENV=test && jest --no-cache --forceExit --coverage --verbose --detectOpenHandles",
"tslint": "tslint -c tslint.json -p packages/tsconfig.json",
"clean": "node scripts/clean.js",
"start": "NODE_ENV=develop node packages/app-archivist/bin/xyo-archivist"
},
"devDependencies": {
"@xyo-network/config-tslint": "^0.1.6",
"husky": "^1.1.1",
"lerna": "^3.4.3",
"tslint": "^5.1.0",
"typescript": "^3.1.6"
},
"husky": {
"hooks": {
"pre-commit": "echo \"Build must pass before committing\" && yarn build && yarn tslint"
}
},
"workspaces": [
"packages/*"
]
}