forked from alibaba/ice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.68 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
78
79
80
81
82
83
{
"name": "ice.js",
"private": true,
"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",
"version": "ts-node ./scripts/tag-version.ts",
"version:check": "ts-node ./scripts/version-check.ts",
"publish": "ts-node ./scripts/publish-package.ts",
"publish:beta": "ts-node ./scripts/publish-beta-package.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",
"upload:oss": "node scripts/upload-oss.js",
"generate:docs": "node ./scripts/generate-docs-database.js",
"clean": "lerna clean --yes && rimraf packages/*/lib",
"lint": "eslint --cache --ext .js,.jsx,.ts,.tsx ./",
"lint:fix": "npm run lint -- --fix",
"test": "jest --forceExit",
"test:watch": "jest --watch",
"coverage": "codecov"
},
"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",
"@testing-library/react-hooks": "^3.2.1",
"@types/jest": "^25.2.1",
"@types/node": "^14.14.21",
"@types/puppeteer": "^5.4.2",
"ali-oss": "^6.7.0",
"cheerio": "^1.0.0-rc.3",
"codecov": "^3.6.5",
"create-test-server": "^3.0.1",
"dependency-check": "^4.1.0",
"eslint": "^6.8.0",
"esm": "^3.2.25",
"execa": "^4.0.0",
"fs-extra": "^8.1.0",
"get-port": "^5.1.1",
"glob": "^7.1.6",
"husky": "^3.1.0",
"ice-npm-utils": "^2.0.1",
"jest": "^26.0.0",
"lerna": "^3.16.4",
"mark-twain": "^2.0.3",
"nodejieba": "^2.4.1",
"npm-run-all": "^4.1.5",
"nsfw": "1.2.6",
"pify": "^4.0.1",
"puppeteer": "^5.5.0",
"react-test-renderer": "^16.13.1",
"rimraf": "^3.0.0",
"semver": "^7.3.2",
"simple-git": "^1.132.0",
"ts-jest": "^26.0.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.0"
},
"dependencies": {
"core-js": "^3.6.4",
"path-to-regexp": "6.1.0"
},
"resolutions": {
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"@typescript-eslint/typescript-estree": "^4.0.0"
}
}