-
Notifications
You must be signed in to change notification settings - Fork 177
/
package.json
72 lines (72 loc) · 2.61 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "elevate-sports-app",
"version": "7.2.1",
"description": "Wrap the needed tools required to cook Elevate desktop and web extension",
"maintainers": [
{
"name": "Thomas Champagne",
"email": "[email protected]",
"web": "https://thomaschampagne.github.io"
}
],
"keywords": [
"sports",
"training",
"cycling",
"running",
"trainingpeaks",
"strava",
"garmin",
"polar",
"wahoo"
],
"scripts": {
"audit:fix": "npm audit fix && cd ./appcore/ && npm audit fix && cd ../desktop/ && npm audit fix && cd ../webextension/ && npm audit fix",
"clean": "node ./node_modules/del-cli/cli.js ./dist/ ./package/ && cd ./desktop/ && npm run clean && cd ../webextension/ && npm run clean",
"validate:desktop": "npm run type:check:desktop && npm run clean && cd ./appcore/ && npm test && cd ../desktop/ && npm test && npm run build:prod",
"postinstall": "cd webextension/ && npm install && cd ../appcore/ && npm install && cd ../desktop/ && npm install",
"prettier": "prettier --write .",
"upgrade:check": "ncu",
"upgrade:apply": "npm run upgrade:check -- -u",
"test": "npm run clean && cd ./desktop/ && npm test && cd ../appcore/ && npm test && cd ../webextension/ && npm test",
"type:check:desktop": "cd ./appcore/ && npm run type:check && cd ../desktop/ && npm run type:check",
"type:check:extension": "cd ./appcore/ && npm run type:check && cd ../webextension/ && npm run type:check",
"wipe": "npm run clean && npm run wipe:package-locks && npm run wipe:node-modules",
"wipe:node-modules": "node ./node_modules/del-cli/cli.js ./node_modules/ ./appcore/node_modules/ ./desktop/node_modules/ ./webextension/node_modules/",
"wipe:package-locks": "node ./node_modules/del-cli/cli.js ./package-lock.json ./appcore/package-lock.json ./desktop/package-lock.json ./webextension/package-lock.json",
"prepare": "husky"
},
"config": {
"unsafe-perm": true
},
"repository": {
"type": "git",
"url": "https://github.com/thomaschampagne/elevate"
},
"author": {
"name": "Thomas Champagne",
"email": "[email protected]",
"web": "https://thomaschampagne.github.io"
},
"license": "MPL-2.0",
"readme": "README.md",
"engines": {
"node": ">=16"
},
"engineStrict": true,
"devDependencies": {
"cpy-cli": "^3.1.1",
"cross-env": "^7.0.3",
"del-cli": "^4.0.1",
"lefthook": "^1.7.12",
"npm-check-updates": "^12.2.1",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"run-sequence": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}