-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.28 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
{
"name": "heads-up",
"version": "1.0.0",
"author": "De Voorhoede",
"license": "MIT",
"scripts": {
"postinstall": "npm-recursive-install --rootDir=projects",
"build": "npm-run-all build:**",
"build:browser-extension": "cd ./projects/browser-extension && npm run build",
"build:web-app": "cd ./projects/web-app && npm run build",
"build:landing-page": "cd ./projects/landing-page && npm run build",
"dev:browser-extension": "cd ./projects/browser-extension && npm start",
"dev:web-app": "cd ./projects/web-app && npm start",
"dev:landing-page": "cd ./projects/landing-page && npm start",
"lint": "npm-run-all lint:**",
"lint:browser-extension": "cd ./projects/browser-extension && npm run lint",
"lint:web-app": "cd ./projects/web-app && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/voorhoede/heads-up.git"
},
"engines": {
"node": "v12.18.0"
},
"husky": {
"hooks": {
"pre-commit": ""
}
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-plugin-sonarjs": "^0.17.0",
"eslint-plugin-vue": "^9.8.0",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"recursive-install": "^1.4.0",
"rimraf": "^3.0.2",
"sonarjs": "^1.0.0"
}
}