-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.74 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@niccomlt/protelis-web-frontend",
"version": "0.1.0",
"private": true,
"author": {
"name": "Niccolò Maltoni",
"email": "[email protected]",
"url": "https://github.com/NiccoMlt"
},
"homepage": "https://protelis-web.herokuapp.com/",
"repository": "https://github.com/NiccoMlt/Protelis-Web/tree/master/src/main/frontend",
"license": "GPL-3.0-only",
"dependencies": {
"@material-ui/core": "4.10.2",
"@material-ui/icons": "4.9.1",
"@material-ui/lab": "4.0.0-alpha.56",
"@material-ui/styles": "4.10.0",
"@monaco-editor/react": "3.3.2",
"@reduxjs/toolkit": "1.3.6",
"axios": "0.19.2",
"clsx": "1.1.1",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"jest-enzyme": "7.1.2",
"konva": "6.0.0",
"monaco-editor": "0.20.0",
"prop-types": "15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-konva": "16.13.0-3",
"react-redux": "7.2.0",
"react-router-dom": "5.2.0",
"react-scripts": "3.4.1",
"redux": "4.0.5",
"redux-logger": "3.0.6",
"sockjs-client": "1.4.0",
"tslib": "2.0.0",
"typeface-roboto": "0.0.75",
"vertx3-eventbus-client": "3.8.5"
},
"devDependencies": {
"@testing-library/dom": "7.5.4",
"@testing-library/jest-dom": "5.8.0",
"@testing-library/react": "10.0.4",
"@testing-library/user-event": "10.3.5",
"@types/enzyme": "3.10.5",
"@types/jest": "25.2.2",
"@types/node": "13.13.12",
"@types/react": "16.9.35",
"@types/react-dom": "16.9.8",
"@types/react-redux": "7.1.9",
"@types/react-router-dom": "5.1.5",
"@types/redux-logger": "3.0.7",
"@types/redux-mock-store": "1.0.2",
"@types/sockjs-client": "1.1.1",
"@types/vertx3-eventbus-client": "3.5.0",
"@types/webpack-env": "1.15.2",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"babel-eslint": "10.1.0",
"codacy-coverage": "3.4.0",
"codecov": "3.7.1",
"commitizen": "4.1.2",
"cz-conventional-changelog": "3.2.0",
"eslint": "6.8.0",
"eslint-config-airbnb-typescript": "7.2.1",
"eslint-config-react-app": "5.2.1",
"eslint-plugin-flowtype": "3.13.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-react-hooks": "2.5.1",
"eslint-plugin-tsdoc": "0.2.5",
"jest": "24.9.0",
"now": "19.0.1",
"react-test-renderer": "16.13.1",
"redux-actions-assertions": "1.3.0",
"redux-mock-store": "1.5.4",
"typescript": "3.7.5"
},
"scripts": {
"commit": "git-cz",
"start": "react-scripts start",
"build": "react-scripts build",
"lint": "tsc --noEmit && eslint --ext .js,.jsx,.ts,.tsx ./",
"lint:fix": "yarn lint --quiet --fix",
"test": "react-scripts test",
"test:coverage": "yarn test --watchAll false --ci --coverage",
"codacy:upload": "yarn test:coverage && cat ./coverage/lcov.info | codacy-coverage",
"codecov:upload": "yarn test:coverage && codecov --disable=gcov",
"deploy": "now",
"deploy:prod": "now --prod",
"eject": "react-scripts eject"
},
"jest": {
"collectCoverageFrom": [
"**/*.{js,jsx,ts,tsx}",
"!**/node_modules/**",
"!**/coverage/**",
"!**/react-app-env.d.ts",
"!**/serviceWorker.{js,ts}",
"!**/index.{js,jsx,ts,tsx}"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "http://localhost:8080",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"engines": {
"node": ">=10.18.1",
"yarn": ">=1.17.0"
}
}