forked from zendesk/copenhagen_theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.89 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
{
"name": "pier-help-center-theme",
"version": "1.2.1",
"repository": "[email protected]:pier-digital/pier-help-center-theme.git",
"scripts": {
"format": "prettier \"{./,tests}/*.{css|js}\" --write",
"watch": "gulp watch",
"build": "gulp build",
"postbuild": "cp README.md ./dist",
"prepreview": "npm run build",
"preview": "zat theme preview --path='dist'",
"start": "npm run watch"
},
"dependencies": {
"mixpanel-browser": "^2.45.0",
"node-fetch": "^2.1.2"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.19.4",
"@babel/register": "^7.18.9",
"@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",
"autoprefixer": "^10.4.12",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.5",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"gulp": "^4.0.2",
"gulp-copy": "^4.0.1",
"gulp-imagemin": "^7.1.0",
"gulp-postcss": "^9.0.1",
"gulp-sass": "^5.1.0",
"gulp-sass-vars": "^1.1.5",
"husky": "^4.2.3",
"js-yaml": "^3.13.1",
"junk": "^3.1.0",
"postcss": "^8.4.18",
"prettier": "^2.7.1",
"sass": "^1.55.0",
"semantic-release": "^17.0.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"prettier": {
"printWidth": 100,
"useTabs": false,
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"trailingComma": "none"
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}