-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
86 lines (86 loc) · 2.54 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
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "app-tracker",
"version": "1.0.0",
"description": "App Tracker",
"main": "index.js",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"start": "webpack-dev-server --config=./webpack/webpack.dev.config.js",
"build": "node node_modules/webpack/bin/webpack.js --progress --config webpack/webpack.prod.config.js --bail",
"postbuild": "node webpack/servicenow.postbuild.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@ant-design/icons": "^4.5.0",
"antd": "^4.12.3",
"axios": "^0.21.1",
"ncp": "^2.0.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-highlight-words": "^0.20.0",
"react-quill": "^1.3.5",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-select": "^4.1.0",
"react-select-async-paginate": "^0.5.3",
"react-to-print": "^2.14.7"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-classes": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.12.13",
"@hot-loader/react-dom": "^16.14.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^12.1.5",
"autoprefixer": "^9.8.6",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.4",
"babel-plugin-import": "^1.13.3",
"babel-preset-minify": "^0.5.1",
"body-parser": "1.18.3",
"chalk": "^3.0.0",
"clean-webpack-plugin": "^3.0.0",
"clear": "^0.1.0",
"core-js": "3.1.3",
"css-loader": "^5.0.2",
"directory-tree": "^2.2.4",
"dotenv-webpack": "^1.8.0",
"eslint": "5.16.0",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-webpack": "0.11.0",
"eslint-loader": "2.1.1",
"eslint-plugin-babel": "4.1.2",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-react": "7.11.1",
"events": "1.0.2",
"express": "4.16.3",
"file-loader": "2.0.0",
"html-webpack-plugin": "3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.x",
"less": "^4.1.1",
"less-loader": "^7.3.0",
"optimist": "^0.6.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"react-hot-loader": "^4.13.0",
"serve-static": "1.13.2",
"style-loader": "^2.0.0",
"svg-sprite-loader": "3.9.2",
"svg-url-loader": "^2.3.2",
"url-loader": "1.1.2",
"webpack": "4.33.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "3.2.3",
"webpack-dev-server": "3.1.11"
}
}