-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.52 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "~scope~",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"init": "node ./scripts/init.js",
"boot": "node ./scripts/bootstrap.js",
"new": "node ./scripts/new.js",
"build": "node ./scripts/build.js",
"clean": "node ./scripts/clean.js",
"upgrade": "node ./scripts/upgrade.js",
"release": "node ./scripts/release.js",
"web": "yarn workspace @~scope~/sandbox start",
"test": "jest",
"coveralls": "jest --coverage && coveralls < coverage/lcov.info"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"eslintIgnore": [
"packages/*/dist/*"
],
"devDependencies": {
"@jest-runner/electron": "^2.0.3",
"@rollup/plugin-alias": "^3.1.0",
"@rollup/plugin-json": "^4.0.3",
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"@wessberg/rollup-plugin-ts": "^1.2.24",
"chalk": "^4.0.0",
"coveralls": "^3.1.0",
"electron": "^8.2.5",
"eslint": "^6.8.0",
"execa": "^4.0.0",
"fs-extra": "^9.0.0",
"husky": "^4.2.5",
"jest": "^25.5.2",
"lerna": "^3.20.2",
"lint-staged": "^10.2.1",
"minimist": "^1.2.5",
"prettier": "^2.0.5",
"rollup": "^2.7.6",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-terser": "^5.3.0",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
}
}