-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.98 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
{
"name": "reactjs-boilerplate",
"version": "0.4.0",
"private": false,
"source": "public/index.html",
"dependencies": {
"axios": "^1.3.4",
"bootstrap": "^5.2.3",
"loglevel": "^1.8.1",
"mobx": "^6.9.0",
"mobx-react": "^8.0.0",
"react": "^18.2.0",
"react-bootstrap": "^2.5.0",
"react-dom": "^18.2.0",
"react-jss": "^10.10.0",
"react-localization": "^1.0.19",
"react-router-dom": "^6.9.0",
"web-vitals": "^3.3.0"
},
"scripts": {
"start": "parcel --open",
"build": "parcel build --dist-dir build --no-source-maps",
"format": "prettier --write \"**/*.+(js|jsx|json|yml|yaml|css|md|vue)\"",
"prepare": "husky install"
},
"alias": {
"assets": "./src/assets",
"components": "./src/components",
"config": "./src/config",
"constants": "./src/constants",
"controllers": "./src/controllers",
"hooks": "./src/hooks",
"localization": "./src/localization",
"pages": "./src/pages",
"routes": "./src/routes",
"stores": "./src/stores",
"theme": "./src/theme"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@parcel/packager-raw-url": "2.9.3",
"@parcel/transformer-svg-react": "2.9.3",
"@parcel/transformer-webmanifest": "2.9.3",
"@parcel/optimizer-terser": "2.9.3",
"autoprefixer": "^10.4.2",
"babel-eslint": "^8.2.6",
"buffer": "^5.5.0",
"caniuse-lite": "^1.0.30001469",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.2",
"parcel": "2.9.3",
"prettier": "^2.2.1",
"process": "^0.11.10"
}
}