-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.55 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
{
"name": "create-react-sass-app",
"description": "A React and sass starter template for quickstart a project with important and minimal requirements.",
"version": "1.1.0",
"dependencies": {
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.14.1",
"react-scripts": "5.0.1",
"sass": "^1.63.6"
},
"scripts": {
"start": "react-scripts start",
"build": "npm run clear && react-scripts build",
"eject": "react-scripts eject",
"lint": "eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write \"**/*.{js,jsx,css,scss}\"",
"clear": "rimraf build",
"generate-icon": "node src/icons/scripts/generate-icon-system",
"postinstall": "npx husky install"
},
"author": "Bharat Kumar",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Bharat-kr/create-react-sass-app"
},
"keywords": [
"react",
"sass"
],
"eslintConfig": {
"extends": [
"react-app",
"eslint-config-prettier"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0"
},
"lint-staged": {
"*.{js,jsx}": "eslint --fix",
"*.{js,jsx,css,scss}": "prettier --write"
}
}