-
Notifications
You must be signed in to change notification settings - Fork 357
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "desktop",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"author": {
"name": "Mullvad VPN",
"email": "[email protected]"
},
"repository": "https://github.com/mullvad/mullvadvpn-app",
"license": "GPL-3.0",
"scripts": {
"lint": "eslint --ignore-pattern packages/ . && npm run lint --workspaces --if-present",
"lint-fix": "eslint --fix --ignore-pattern packages/ . && npm run lint-fix --workspaces --if-present",
"test": "npm run test --workspaces --if-present"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.17.9",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0"
},
"engines": {
"node": ">=16",
"npm": ">=8.3"
},
"volta": {
"node": "20.18.1",
"npm": "10.9.1"
}
}