-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
38 lines (38 loc) · 940 Bytes
/
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
{
"private": true,
"scripts": {
"dev:website": "cd website && yarn run dev",
"dev": "netlify dev",
"start": "yarn run dev",
"lint": "eslint --ext .js,.vue website/src",
"build": "yarn workspace website build",
"build:website": "cd website && yarn run build",
"postinstall": "git submodule update --init --recursive"
},
"devDependencies": {
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.14.1",
"netlify-cli": "^15.11.0"
},
"workspaces": {
"packages": [
"website",
"gbfs-validator",
"check-systems",
"functions"
],
"nohoist": [
"netlify-cli"
]
},
"engines": {
"npm": ">=8.0.0",
"node": ">=18.0.0"
}
}