forked from Cloudhuset/Zendesk-React-App-Boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2 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
{
"name": "zendesk_react_app_boilerplate",
"version": "2.0.0",
"description": "Boilerplate for making a Zendesk App with React.js and Redux ",
"scripts": {
"clean": "rimraf dist/tmp",
"build": "webpack --config webpack.prod.js -p",
"build-dev": "webpack --config webpack.dev.js",
"package": "npm-run-all clean && zat package --path ./dist",
"build:package": "npm-run-all build package",
"watch": "webpack --config webpack.dev.js --watch",
"serve": "zat server --path dist -c settings.json",
"test": "jest"
},
"author": "Cloudhuset.dk",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-preset-es2016": "^6.24.1",
"css-loader": "^3.3.0",
"eslint": "^6.7.2",
"eslint-import-resolver-webpack": "^0.12.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-react": "^7.17.0",
"eslint-watch": "^6.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.1",
"svg-inline-loader": "^0.8.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@babel/runtime": "^7.7.6",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"node-sass": "^4.13.0",
"promise-polyfill": "^8.1.3",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"serialize-javascript": "^2.1.2"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|scss)$": "identity-obj-proxy"
}
}
}