-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.94 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
{
"name": "neos-slick",
"version": "4.1.0",
"repository": "git@github.com:unikka/neos-slick.git",
"license": "MIT",
"dependencies": {
"jquery": "^3.5.1",
"lozad": "^1.16.0",
"slick-carousel": "^1.8.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"semantic-release": "semantic-release",
"commit": "git-cz",
"build-js": "webpack --mode development",
"build-js:production": "NODE_ENV=production webpack --mode production",
"build-js-watch": "webpack --watch --mode development",
"build-styles": "webpack --config webpack.styles.config.js --mode development",
"build-styles:production": "NODE_ENV=production webpack --config webpack.styles.config.js --mode production",
"build-styles-watch": "webpack --config webpack.styles.config.js --watch --mode development",
"build:production": "yarn build-styles:production && yarn build-js:production"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/release-notes-generator": "^9.0.1",
"@webpack-cli/migrate": "^1.1.0",
"babel-loader": "^8.2.2",
"commitizen": "^4.2.2",
"conventional-changelog-eslint": "^3.0.9",
"css-loader": "^5.0.1",
"cz-adapter-eslint": "^0.3.0",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^1.3.3",
"node-sass": "^8.0.0",
"sass-loader": "^10.1.0",
"semantic-release": "^17.3.0",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^4.2.3",
"webpack": "^4.44.2",
"webpack-cli": "^4.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-adapter-eslint"
}
}
}