-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.2 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
{
"name": "parcel-react",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "del .parcel-cache && parcel serve public/index.html",
"build": "parcel build public/index.html",
"test": "echo \"Error: no test specified\" && exit 1",
"watch:css": "postcss src/styles/tailwind.css -o src/styles/output.css"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@reach/router": "^1.3.4",
"jotai": "^0.16.8",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@types/reach__router": "^1.3.7",
"@types/react": "^17.0.8",
"@types/react-dom": "^17.0.5",
"autoprefixer": "^10.2.6",
"parcel": "^2.0.0-beta.3.1",
"postcss": "8.2.15",
"postcss-cli": "^8.3.1",
"tailwindcss": "^2.1.2",
"typescript": "^4.3.2"
},
"engines": {
"node": "14.17.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}