-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 877 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 877 Bytes
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
{
"private": true,
"name": "material-templates",
"scripts": {
"eslint": "eslint --cache --ext .js,.jsx,.ts,.tsx ./",
"eslint-fix": "npm run lint -- --fix",
"lint": "npm run eslint && npm run stylelint",
"stylelint": "stylelint ./**/*.{css,scss} ",
"ci": "npm run lint",
"prettier": "prettier **/* --write",
"publish": "ts-node ./scripts/publish.ts"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@iceworks/spec": "^1.0.0",
"@types/node": "^14.14.6",
"axios": "^0.28.0",
"eslint": "^8.40.0",
"fs-extra": "^10.0.0",
"husky": "^4.3.0",
"ice-npm-utils": "^2.1.2",
"prettier": "^2.1.2",
"stylelint": "^13.7.2",
"ts-node": "^8.10.2",
"typescript": "^3.7.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run lint"
}
}
}