-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 2.6 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "your-application-name-goes-here",
"version": "0.1.0",
"private": true,
"homepage": ".",
"scripts": {
"build": "react-scripts build",
"check-style": "prettier **/*.{css,html,tsx,json,md} --list-different",
"fix-style": "prettier **/*.{css,html,tsx,json,md} --write",
"serve": "superstatic build --port 3000",
"start": "react-scripts start",
"test": "react-scripts test",
"test-e2e": "cypress run",
"test-e2e-debug": "cypress open"
},
"browserslist": {
"production": [
"Chrome >= 33",
"Firefox >= 29",
"Edge >= 12",
"IE >= 11"
],
"development": [
"Chrome >= 33",
"Firefox >= 29",
"Edge >= 12",
"IE >= 11"
]
},
"prettier": {
"bracketSpacing": false,
"singleQuote": true,
"trailingComma": "all"
},
"eslintConfig": {
"plugins": [
"emotion"
],
"extends": [
"react-app"
],
"rules": {
"emotion/jsx-import": "error",
"emotion/no-vanilla": "error",
"emotion/syntax-preference": [
2,
"string"
]
},
"overrides": [
{
"extends": [
"plugin:cypress/recommended"
]
}
]
},
"jest": {
"moduleNameMapper": {
"^dnd-core$": "dnd-core/dist/cjs",
"^react-dnd$": "react-dnd/dist/cjs",
"^react-dnd-html5-backend$": "react-dnd-html5-backend/dist/cjs"
}
},
"resolutions": {
"moment": "2.24.0",
"terser-webpack-plugin": "1.4.3"
},
"dependencies": {
"@activeviam/activeui-sdk": "file:./activeui-sdk-4.3.16.tgz",
"@emotion/core": "^10.0.16",
"@reduxjs/toolkit": "^1.2.1",
"antd": "3.20.6",
"axios": "^0.24.0",
"bowser": "^1.9.4",
"core-js": "^3.2.1",
"file-saver": "^1.3.3",
"jszip": "^3.1.3",
"lodash": "^4.17.18",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.0",
"react-split-pane": "^0.1.91",
"redux": "^4.0.5",
"regenerator-runtime": "^0.13.2",
"resize-observer-polyfill": "^1.5.1",
"use-persisted": "^0.1.2",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@types/file-saver": "^2.0.1",
"@types/jest": "^24.0.13",
"@types/jszip": "^3.1.7",
"@types/lodash": "^4.14.138",
"@types/react": "^16.9.4",
"@types/react-dom": "^16.9.1",
"@types/react-redux": "^7.1.7",
"@types/react-router-dom": "^5.1.3",
"@types/webpack-env": "^1.13.9",
"cypress": "^3.8.3",
"eslint-plugin-emotion": "^10.0.14",
"prettier": "^2.0.4",
"superstatic": "^6.0.3",
"typescript": "^3.8.2"
}
}