This repository has been archived by the owner on Nov 5, 2024. It is now read-only.
forked from Cloudhuset/Zendesk-React-App-Boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.1 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
{
"name": "zendesk_react_app_boilerplate",
"version": "2.0.0",
"description": "Boilerplate for making a Zendesk App with React.js and MobX ",
"scripts": {
"clean": "rimraf dist",
"build": "webpack --config webpack.prod.js --mode production",
"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.13.8",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/plugin-transform-runtime": "^7.13.9",
"@babel/preset-env": "^7.13.9",
"@babel/preset-react": "^7.12.13",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-preset-es2016": "^6.24.1",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.1.1",
"eslint": "^7.21.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.22.0",
"eslint-watch": "^7.0.0",
"html-loader": "^2.1.1",
"html-webpack-plugin": "^5.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"svg-inline-loader": "^0.8.2",
"webpack": "^5.24.2",
"webpack-cli": "^4.5.0",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"@babel/runtime": "^7.13.9",
"@doodle/components": "5.9.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"mobx": "^6.1.8",
"mobx-react": "^7.1.0",
"node-sass": "^5.0.0",
"promise-polyfill": "^8.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"serialize-javascript": "^5.0.1",
"terser-webpack-plugin": "^5.1.1"
},
"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"
}
}
}