This repository has been archived by the owner on May 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
53 lines (53 loc) · 1.62 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
{
"name": "ice.js",
"private": true,
"version": "1.2.0",
"workspaces": [
"packages/*"
],
"description": "A universal framework based on React.js",
"author": "[email protected]",
"license": "MIT",
"scripts": {
"setup": "rm -rf node_modules && yarn install --registry=https://registry.npm.taobao.org/ && npm run bootstrap",
"bootstrap": "SASS_BINARY_SITE=https://npm.taobao.org/mirrors/node-sass/ npm run clean && lerna bootstrap --registry=https://registry.npm.taobao.org/ && npm run build",
"watch": "ts-node ./scripts/watch.ts",
"build": "ts-node ./scripts/build.ts",
"publish": "ts-node ./scripts/publish.ts",
"sync": "ts-node ./scripts/sync.ts",
"rollback": "ts-node ./scripts/rollback.ts",
"owner": "ts-node ./scripts/owner.ts",
"dependency:check": "ts-node ./scripts/dependency-check.ts",
"clean": "lerna clean --yes && rimraf packages/*/lib",
"lint": "eslint --cache --ext .js,.jsx,.ts,.tsx ./",
"lint:fix": "npm run lint -- --fix"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint"
}
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@ice/spec": "^1.0.0",
"eslint": "^6.8.0",
"esm": "^3.2.25",
"execa": "^4.0.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"husky": "^3.1.0",
"lerna": "^3.16.4",
"npm-run-all": "^4.1.5",
"nsfw": "1.2.6",
"pify": "^4.0.1",
"rimraf": "^3.0.0",
"simple-git": "^1.132.0",
"ts-node": "^8.6.1",
"typescript": "^3.7.4",
"dependency-check": "^4.1.0"
},
"dependencies": {
"core-js": "^3.6.4"
}
}