-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.45 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
{
"name": "rax-materials",
"version": "0.2.0",
"description": "This is a ice material project for Rax",
"author": "",
"scripts": {
"scaffolds:build": "ts-node ./scripts/ejsRender/build.ts",
"scaffolds:watch": "ts-node ./scripts/ejsRender/watch.ts",
"deploy": "npm run scaffolds:build && npm run publish && npm run generate && npm run sync",
"publish": "ts-node ./scripts/publish.ts",
"generate": "iceworks generate",
"sync": "ts-node ./scripts/upload.ts",
"lint": "npm run eslint && npm run stylelint",
"eslint": "eslint --ext .js,.jsx,.ts,.tsx ./",
"eslint:fix": "npm run eslint -- --fix",
"prettier": "prettier **/* --write",
"stylelint": "stylelint '**/*.{css,scss,less}'",
"stylelint:fix": "npm run stylelint -- --fix"
},
"files": [
"build"
],
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@iceworks/generate-project": "^1.3.1",
"@iceworks/spec": "^1.0.0",
"@types/node": "^14.14.6",
"ali-oss": "^6.9.1",
"chokidar": "^3.5.2",
"eslint": "^6.8.0",
"fs-extra": "^9.0.1",
"husky": "^4.3.0",
"ice-npm-utils": "^2.0.0",
"iceworks": "^3.2.5",
"prettier": "^2.1.2",
"stylelint": "^13.1.0",
"ts-node": "^8.10.2",
"typescript": "^3.7.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run lint"
}
},
"materialConfig": {
"template": "@icedesign/template-rax",
"type": "rax"
}
}