-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
38 lines (38 loc) · 1.17 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": "typer",
"version": "1.0.0",
"description": "A game to see how fast you can type",
"main": "index.js",
"scripts": {
"watch": "npm run clean && parcel watch src/index.pug src/help.pug src/leaderboards.pug",
"dev": "concurrently \"npm run watch\" \"http-server dist/\"",
"build": "npm run clean && parcel build src/index.pug src/help.pug src/leaderboards.pug --out-dir public && npm run build-sw",
"build-sw": "workbox generateSW workbox-config.js",
"clean": "rimraf ./public && rimraf ./dist && rimraf ./.cache"
},
"browserslist": [
"last 1 Chrome versions"
],
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^5.3.0",
"eslint": "^7.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"parcel-bundler": "^1.12.4",
"pug": "^2.0.4",
"rimraf": "^3.0.2",
"sass": "^1.26.5",
"workbox-cli": "^5.1.3"
},
"dependencies": {
"crypto-js": "^4.0.0",
"devtools-detect": "^3.0.0",
"parcel-plugin-inliner": "^1.0.14"
}
}