-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
47 lines (47 loc) · 1.16 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
{
"name": "fundude",
"version": "1.0.0",
"main": "index.js",
"author": "Benjamin Feng <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "parcel web/index.html",
"build": "parcel build web/index.html --public-url ./",
"postbuild": "react-snap"
},
"reactSnap": {
"source": "dist"
},
"browserslist": [
"> 1%, not IE 11"
],
"alias": {
"react": "preact/compat",
"react-dom": "preact/compat"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@types/classnames": "^2.2.7",
"@types/react": "^16.8.13",
"@types/react-dom": "^16.8.4",
"@types/react-window": "^1.8.1",
"parcel-bundler": "^1.12.3",
"parcel-plugin-bundle-visualiser": "^1.2.0",
"react-snap": "git://github.com/fengb/react-snap.git#d3da4aa1474ab3fd768b38278d1006f173ea1afe",
"typescript": "^3.4.3",
"watch": "^1.0.2"
},
"dependencies": {
"@svgr/parcel-plugin-svgr": "^4.2.0",
"classnames": "^2.2.6",
"nano-css": "^5.2.0",
"preact": "^10.0.0",
"react-use": "^9.12.0",
"react-use-dimensions": "^1.2.1",
"react-window": "1.8.0"
},
"resolutions": {
"mkdirp": "0.5.5",
"parse5": "5.1.0"
}
}