-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
62 lines (62 loc) · 1.87 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
{
"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": "npm run lint && webpack --config webpack.prod.js",
"profile": "webpack --config webpack.prod.js --profile --json > webpack-stats.json",
"build-dev": "webpack --config webpack.dev.js",
"package": "npm-run-all clean && zcli apps:package dist",
"build:package": "npm-run-all build package",
"dev": "webpack --config webpack.dev.js --watch",
"serve": "zcli apps:server dist",
"lint": "eslint src/",
"test": "jest"
},
"author": "Cloudhuset.dk",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.1",
"babel-loader": "^8.1.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^5.0.0",
"eslint": "^7.12.1",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.21.5",
"eslint-watch": "^7.0.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^5.6.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"sass-loader": "^10.0.4",
"style-loader": "^2.0.0",
"svg-inline-loader": "^0.8.2",
"terser-webpack-plugin": "^5.0.1",
"webpack": "^5.2.0",
"webpack-cli": "^4.1.0",
"webpack-merge": "^5.2.0"
},
"dependencies": {
"@babel/runtime": "^7.12.1",
"core-js": "^3.6.5",
"promise-polyfill": "^8.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"regenerator-runtime": "^0.13.7",
"sass": "^1.69.5"
},
"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"
}
}
}