forked from apptools-lab/AppWorks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.42 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "iceworks",
"private": true,
"version": "1.0.0",
"workspaces": [
"packages/*"
],
"scripts": {
"setup": "npm run install:deps && lerna clean --yes && npm run packages:link && npm run packages:build",
"test": "NODE_ENV=unittest LOG_LEVEL=verbose jest",
"install:deps": "rm -rf node_modules && rm -rf ./packages/*/node_modules && SASS_BINARY_SITE=https://npm.taobao.org/mirrors/node-sass/ yarn install --registry=http://registry.npm.taobao.org",
"packages:link": "lerna link",
"packages:watch": "ts-node ./scripts/watch.ts",
"packages:build": "npm run packages:clean && ts-node ./scripts/build.ts",
"packages:clean": "rm -rf ./packages/*/lib",
"publish": "npm run publish:package && npm run publish:extension",
"publish:package": "ts-node ./scripts/package-publish.ts",
"publish:extension": "ts-node ./scripts/extension-publish.ts",
"lint": "eslint --cache --ext .ts,.tsx,.js ./ --quiet",
"lint:fix": "eslint --cache --ext .ts,.tsx,.js ./ --quiet --fix",
"coverage": "codecov",
"owner": "ts-node ./scripts/owner.ts",
"sync": "ts-node ./scripts/sync.ts",
"dependency:check": "ts-node ./scripts/dependency-check.ts"
},
"resolutions": {
"eslint-plugin-import": "2.20.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run lint"
}
},
"lint-staged": {
"*.{ts,tsx}": "prettier --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ice-lab/iceworks-next.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ice-lab/iceworks-next/issues"
},
"homepage": "https://github.com/ice-lab/iceworks-next#readme",
"devDependencies": {
"@ice/spec": "^1.0.1",
"@types/execa": "^2.0.0",
"@types/jest": "^25.1.3",
"@types/mkdirp": "^1.0.0",
"@types/tar": "^4.0.3",
"axios": "^0.18.0",
"chalk": "^4.0.0",
"codecov": "^3.6.5",
"commitlint": "^8.3.5",
"concurrently": "^5.1.0",
"cross-spawn": "^7.0.2",
"dependency-check": "^4.1.0",
"eslint": "^6.8.0",
"execa": "^4.0.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"husky": "^4.2.3",
"jest": "^25.1.0",
"jest-extended": "^0.11.5",
"lerna": "^3.20.2",
"lint-staged": "^10.0.8",
"nsfw": "^1.2.7",
"pify": "^5.0.0",
"stylelint": "^13.2.0",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.2"
}
}