-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.01 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
{
"name": "focusmusic",
"version": "1.0.0",
"main": "src/index.js",
"license": "MIT",
"scripts": {
"prestart": "yarn clean",
"start": "parcel src/index.html",
"prebuild": "yarn clean",
"build": "parcel build src/index.html --no-cache --no-source-maps --out-dir=dist --public-url ./ ",
"postbuild": "yarn run sw",
"clean": "rimraf dist .cache",
"sw": "workbox generateSW",
"predeploy": "yarn run clean && yarn run build",
"deploy": "now dist"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"babel-preset-env": "^1.7.0",
"jest": "^24.0.0",
"jest-puppeteer": "^3.9.0",
"parcel-bundler": "^1.11.0",
"postcss-modules": "^1.4.1",
"postcss-preset-env": "^6.5.0",
"puppeteer": "^1.12.1",
"puppeteer-to-istanbul": "^1.2.2",
"rimraf": "^2.6.3",
"workbox-build": "^3.6.3",
"workbox-cli": "^3.6.3"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"nes.css": "^1.0.0"
}
}