forked from thinkybeast/copenhagen_theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.19 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.19 KB
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
{
"name": "copenhagen_theme",
"version": "2.1.0",
"repository": "git@github.com:zendesk/copenhagen_theme.git",
"dependencies": {
"clipboard": "^2.0.6",
"node-fetch": "^2.1.2"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"concurrently": "^5.3.0",
"core-js": "3",
"css-loader": "^5.0.1",
"husky": "^4.2.3",
"js-yaml": "^3.13.1",
"mini-css-extract-plugin": "^1.3.3",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"sass": "^1.30.0",
"sass-loader": "^10.1.0",
"semantic-release": "^17.0.4",
"webpack": "^5.10.1",
"webpack-cli": "^4.2.0"
},
"scripts": {
"build": "npx webpack",
"preview": "zat theme preview",
"watch": "npx webpack --watch",
"start": "concurrently 'yarn run preview' 'yarn run watch'"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}