-
Notifications
You must be signed in to change notification settings - Fork 176
/
Copy pathpackage.json
68 lines (68 loc) · 2.02 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
{
"private": true,
"name": "materials",
"version": "0.1.0",
"description": "基于 Fusion 基础组件和 ICE 脚手架的官方物料",
"author": "",
"scripts": {
"generate-scaffold": "node scripts/generate.js",
"clean": "rm -rf node_modules && rm -rf blocks/*/node_modules",
"setup": "npm run clean && npm i",
"generate": "iceworks generate",
"lint": "npm run eslint && npm run stylelint",
"eslint-blocks": "eslint --cache --ext .js,.jsx,.ts,.tsx ./blocks",
"tsChecker": "node scripts/tsChecker",
"eslint": "eslint --cache --quiet --ext .js,.jsx,.ts,.tsx ./",
"stylelint": "stylelint **/*.{css,scss,less}"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run lint"
}
},
"dependencies": {
"@alifd/next": "^1.21.0",
"@types/react": "^16.9.16",
"ice-scaffold-generator": "^1.1.35-1",
"moment": "^2.24.0",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@alib/build-scripts": "^0.1.5",
"@alifd/theme-design-pro": "^0.6.2",
"@commitlint/cli": "^11.0.0",
"@ice/screenshot": "^0.1.5",
"@iceworks/spec": "^1.0.0",
"@types/fs-extra": "^8.0.1",
"@types/node": "^12.12.17",
"ali-oss": "^6.5.1",
"build-plugin-block": "^1.1.0",
"build-plugin-fusion": "^0.1.0",
"build-plugin-fusion-material": "^0.1.10",
"build-plugin-ice-app": "^0.1.5",
"build-plugin-moment-locales": "^0.1.0",
"eslint": "^6.0.1",
"fs-extra": "^8.1.0",
"fs-readdir-recursive": "^1.1.0",
"globby": "^11.0.3",
"husky": "^3.1.0",
"ice-scaffold-generator": "^1.1.5",
"iceworks": "^3.1.13",
"lerna": "^3.19.0",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"stylelint": "^13.2.0",
"typescript": "^3.7.2"
},
"materialConfig": {
"template": "@icedesign/ice-react-ts-material-template",
"type": "react",
"fusion-site": {
"id": 1,
"name": "Fusion Design",
"url": "https://fusion.design/api/v1/sites/1/materials"
}
}
}