-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"name": "curriculum_vitae",
"version": "0.1.2",
"private": true,
"homepage": "https://enkhee-Osiris.github.io/curriculum_vitae/",
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"uuid": "^8.3.2",
"web-vitals": "^1.0.1"
},
"scripts": {
"start": "craco start",
"build": "rm -rf ./build && GENERATE_SOURCEMAP=false craco build",
"deploy": "yarn build && node ./scripts/deploy.js",
"test": "exit 0",
"format": "yarn format:pretty; yarn lint:fix",
"format:pretty": "prettier --config ./prettier.config.js --write \"./src\"",
"lint": "eslint -c ./.eslintrc.js --ext .jsx --ext .js \"./src\"",
"lint:fix": "yarn lint --fix"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@actions/core": "^1.3.0",
"@craco/craco": "^6.1.2",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.3.0",
"windicss-webpack-plugin": "^0.5.3"
}
}