-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.25 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
{
"name": "sheetsstorm",
"version": "1.0.0",
"description": "",
"main": "dist/index.html",
"keywords": [],
"author": "",
"license": "ISC",
"browserslist": "> 0.25%, not dead",
"scripts": {
"cname": "echo 'json.sheetsstorm.com' > dist/CNAME",
"start": "parcel src/index.html --no-autoinstall",
"v": "parcel --version",
"clean": "rm -R dist && mkdir dist",
"cp": "cp -R examples dist/examples && cp assets/screenshot.png dist/screenshot.png",
"build-prod": "yarn clean && parcel build src/index.html --no-autoinstall --no-source-maps --log-level 3",
"deploy": "yarn cname && yarn cp && yarn gh-pages -d dist ",
"ship": "yarn build-prod && yarn deploy ",
"build-prod-shake": "parcel build src/index.html --no-autoinstall --public-url . --experimental-scope-hoisting"
},
"dependencies": {
"clipboard-copy": "^3.0.0",
"core-js": "^3.0.1",
"evergreen-ui": "^4.15.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-enroute": "^2.0.0",
"react-social-icons": "^4.1.0",
"regenerator-runtime": "^0.13.2"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"gh-pages": "^2.0.1",
"parcel": "2.0.0-alpha.3.2"
}
}