This repository has been archived by the owner on Feb 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.43 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
{
"name": "cra-template-recoil",
"version": "0.1.6",
"license": "MIT",
"author": "Alexander Grischuk <alexgrischuk@gmail.com>",
"main": "template.json",
"description": "A light weight Create React App template with Recoil for state management",
"keywords": [
"react",
"create-react-app",
"cra-template",
"template",
"recoil",
"state management"
],
"repository": {
"type": "git",
"url": "https://github.com/alexandr-g/cra-template-recoil",
"directory": "/"
},
"bugs": {
"url": "https://github.com/alexandr-g/cra-template-recoil/issues"
},
"files": [
"template",
"template.json"
],
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"recoil": "^0.6.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"clean-files": "rm -rf ./template/public ./template/src",
"copy-files": "cp -a ./src/. template/src && cp -a ./public/. template/public && cp README.md template/",
"prepublishOnly": "yarn clean-files && yarn copy-files"
},
"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"
]
}
}