-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.07 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.07 KB
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
{
"name": "code-easy-web",
"version": "0.0.2",
"private": false,
"license": "Apache 2.0",
"scripts": {
"start": "cross-env BROWSER=none REACT_APP_VERSION='0.0.2' react-scripts start",
"build": "cross-env REACT_APP_VERSION='0.0.2' react-scripts build",
"tsc-build": "tsc",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"dependencies": {
"axios": "^0.21.1",
"case": "^1.6.3",
"code-easy-components": "^0.0.16",
"cross-env": "^7.0.3",
"dateformat": "^4.5.1",
"file-saver": "^2.0.5",
"jszip": "^3.6.0",
"react": "^17.0.2",
"react-dnd": "^14.0.2",
"react-dnd-html5-backend": "^14.0.0",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-monaco-editor": "^0.43.0",
"react-observing": "^1.3.7",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"uuid": "^8.3.2",
"yup": "^0.32.9"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^13.1.9",
"@types/dateformat": "^3.0.1",
"@types/file-saver": "^2.0.2",
"@types/jest": "^26.0.23",
"@types/mocha": "^8.2.2",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.5",
"@types/react-router-dom": "^5.1.7",
"@types/uuid": "^8.3.0",
"@types/yup": "^0.29.11",
"commitizen": "^4.0.4",
"cz-conventional-changelog": "3.1.0",
"husky": "^4.2.5",
"typescript": "^4.2.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}