-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.32 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.32 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
{
"name": "dsplay-template-react-boilerplate",
"version": "3.0.1",
"private": true,
"dependencies": {
"@dsplay/react-template-utils": "^4.0.0",
"date-fns": "^2.29.3",
"i18next": "^20.6.1",
"i18next-browser-languagedetector": "^6.1.8",
"node-sass": "^8.0.0",
"phosphor-react": "^1.4.1",
"react": "^18.2.0",
"react-app-polyfill": "^3.0.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.38.0",
"react-i18next": "^11.18.6",
"react-scripts": "^5.0.1"
},
"scripts": {
"start": "react-scripts start",
"prebuild": "npm run linter",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"linter": "eslint --ext=js --ext=jsx src",
"linter:fix": "eslint --ext=js --ext=jsx src --fix",
"eject": "react-scripts eject",
"prezip": "npm run build",
"zip": "rm -rf build/test-assets && ./build.sh"
},
"homepage": "./",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/eslint-parser": "^7.22.9",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2"
}
}