-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.46 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
{
"name": "frontend",
"version": "0.1.10",
"private": true,
"dependencies": {
"@material-ui/core": "^4.9.11",
"@material-ui/icons": "^4.9.1",
"ace-builds": "^1.4.11",
"axios": "^0.19.2",
"brace": "^0.11.1",
"cb-hooks": "^2.0.2",
"cb-react-recaptcha": "^1.0.2",
"clsx": "^1.1.0",
"file-saver": "^2.0.2",
"json2mq": "^0.2.0",
"jss": "^10.1.1",
"lodash": "^4.17.15",
"lorem-ipsum": "^2.0.3",
"material-design-icons": "^3.0.1",
"mobile-detect": "^1.4.4",
"react": "^17.0.2",
"react-ace": "^8.1.0",
"react-dom": "^17.0.2",
"react-hook-form": "^5.5.3",
"react-markdown": "^4.3.1",
"react-media": "^1.10.0",
"react-player": "^1.15.3",
"react-router-dom": "^5.2.1",
"react-syntax-highlighter": "^12.2.1",
"typeface-roboto": "^0.0.75",
"ua-parser-js": "^0.7.21"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@release-it/conventional-changelog": "^1.1.4",
"@size-limit/preset-app": "^4.4.5",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/enzyme-to-json": "^1.5.3",
"@types/file-saver": "^2.0.1",
"@types/history": "^4.7.5",
"@types/jest": "^25.2.1",
"@types/json2mq": "^0.2.0",
"@types/lodash": "^4.14.150",
"@types/node": "^13.13.2",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.8",
"@types/react-syntax-highlighter": "^11.0.4",
"@types/ua-parser-js": "^0.7.33",
"commitizen": "^4.0.4",
"cz-conventional-changelog": "3.1.0",
"env-cmd": "^10.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"husky": "^4.2.5",
"lint-staged": "^10.1.7",
"node-sass": "^6.0.1",
"npm-link-shared": "^0.5.6",
"react-scripts": "4.0.3",
"release-it": "^13.5.5",
"size-limit": "^4.4.5",
"source-map-explorer": "^2.4.2",
"typescript": "^4.4.2"
},
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"build": "react-scripts build",
"build:staging": "env-cmd -f .env.staging react-scripts build",
"commit": "git-cz",
"deploy:heroku": "git push heroku master",
"eject": "react-scripts eject",
"format": "prettier --write \"src/**/*.{ts,tsx,md}\"",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "yarn lint --fix",
"_prestart": "npm-link-shared ./node_modules/cb-hooks/node_modules . react",
"release-github": "release-it --ci --config .release-github.json",
"release-gitlab": "release-it --ci --config .release-gitlab.json",
"size": "yarn build && size-limit",
"start": "react-scripts start",
"test": "react-scripts test",
"type-check": "tsc --noEmit"
},
"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",
"pre-commit": "yarn type-check && yarn lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn lint:fix"
],
"{*.{json,md}}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=12.16.1"
}
}