-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.34 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
{
"scripts": {
"now-build": "npm run build",
"format": "prettier app/**/*.js --write",
"watch": "parcel watch app/index.html",
"build": "parcel build app/index.html && workbox copyLibraries dist && workbox generateSW",
"serve": "serve dist",
"start": "concurrently \"npm:watch\" \"npm:serve\"",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -r .cache dist"
},
"prettier": {
"semi": false,
"printWidth": 100,
"singleQuote": true
},
"name": "agamotto",
"version": "1.0.0",
"description": "Personal work time tracking app",
"main": "index.js",
"browserslist": "last 2 chrome versions, last 2 safari versions, last 1 iOS versions",
"keywords": [
"time",
"tracking",
"work"
],
"author": "Fabian Gündel <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "~7.2.2",
"@babel/plugin-proposal-class-properties": "~7.2.3",
"@babel/preset-env": "~7.2.3",
"autoprefixer": "~9.4.5",
"concurrently": "~4.1.0",
"parcel-bundler": "~1.11.0",
"postcss-modules": "~1.4.1",
"prettier": "~1.15.3",
"serve": "~10.1.1",
"workbox-cli": "~3.6.3"
},
"dependencies": {
"date-fns": "1.30.1",
"pouchdb": "7.0.0",
"react": "16.8.0-alpha.0",
"react-dom": "16.8.0-alpha.0",
"sanitize.css": "8.0.0"
}
}