This repository was archived by the owner on May 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.68 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.68 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
48
49
50
{
"private": false,
"scripts": {
"dev:setup": "bash ./shell/dev-setup.sh",
"dev:build": "npm run build",
"dev:build:watch": "npm run start",
"dev:test": "jest --forceExit --detectOpenHandles",
"dev:test:watch": "npm run dev:test -- --watch",
"dev:teardown": "bash ./shell/dev-teardown.sh",
"bootstrap": "lerna bootstrap --hoist --ci",
"build": "lerna run build",
"clean": "lerna clean",
"link": "lerna link",
"publish": "lerna publish",
"start": "lerna run start --stream --parallel",
"ci:mobile": "bash ./shell/ci.mobile.sh",
"ci:web": "bash ./shell/ci.web.sh",
"ci": "bash ./shell/ci.sh",
"pack": "lerna run pack --stream",
"test:lint:fix": "npm run test:lint -- --fix",
"test:lint": "eslint --config .eslintrc.js .",
"test:pack": "lerna run test:pack --stream",
"test:unit:watch": "npm run test:unit -- --watch",
"test:unit": "jest --forceExit --detectOpenHandles --runInBand",
"test:web:generators": "bash ./shell/web/testGenerators.sh",
"prepare": "husky install"
},
"devDependencies": {
"@types/cross-spawn": "6.0.2",
"@types/jest": "26.0.24",
"@typescript-eslint/eslint-plugin": "4.31.1",
"@typescript-eslint/parser": "4.31.1",
"cross-spawn": "7.0.3",
"cross-spawn-promise": "0.10.2",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-prettier": "3.4.1",
"husky": "6.0.0",
"husky-add-issue-tracker": "0.1.1",
"jest": "27.2.0",
"lerna": "4.0.0",
"npm-run-all": "4.1.5",
"prettier": "2.4.1",
"tree-node-cli": "1.4.0",
"ts-jest": "27.0.5",
"typescript": "4.4.3"
},
"name": "scripts"
}