-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 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
39
40
41
{
"name": "meditate",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rm -rf dist && mkdir dist && run-p build:* && node scripts/injectCacheList",
"build:parcel": "CACHE_LIST=CACHE_LIST parcel build --no-source-maps src/index.html",
"build:robots": "touch dist/robots.txt",
"fmt": "prettier --write '**/*'",
"icons": "node scripts/icons",
"start": "parcel src/index.html --open",
"test": "run-p test:*",
"test:audit": "yarn audit --level critical || [ $? -lt 16 ]",
"test:format": "prettier --check '**/*'",
"test:types": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benji6/meditation-timer.git"
},
"author": "Ben Hall",
"bugs": {
"url": "https://github.com/benji6/meditation-timer/issues"
},
"homepage": "https://github.com/benji6/meditation-timer#readme",
"browserslist": [
">1.25%"
],
"dependencies": {
"nosleep.js": "^0.12.0"
},
"devDependencies": {
"@types/node": "^17.0.6",
"favicons": "^6.0.0",
"npm-run-all": "^4.1.3",
"parcel-bundler": "^1.12.4",
"prettier": "^2.3.0",
"typescript": "^4.0.2"
}
}