-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
73 lines (73 loc) · 2.24 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
73
{
"name": "wireguard-manager",
"version": "1.0.0",
"description": "A simple web-based WireGuard VPN manager",
"main": "index.js",
"scripts": {
"dev": "nodemon --exec ts-node src/index.ts",
"build": "rm -rf dist && next build src/frontend && tsc --build tsconfig.json && copyfiles -u 1 **/*.graphql dist",
"start": "NODE_ENV=production node dist/index.js",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix && prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/phillytan/wireguard-manager.git"
},
"keywords": [],
"author": "Philly Tan <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/phillytan/wireguard-manager/issues"
},
"homepage": "https://github.com/phillytan/wireguard-manager#readme",
"devDependencies": {
"@types/classnames": "^2.2.10",
"@types/compression": "^1.7.0",
"@types/express": "^4.17.11",
"@types/helmet": "^4.0.0",
"@types/js-cookie": "^2.2.6",
"@types/js-md5": "^0.4.2",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongodb": "^3.6.9",
"@types/node": "^14.14.34",
"@types/react": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"copyfiles": "^2.4.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-react": "^7.22.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-node": "^9.1.1"
},
"dependencies": {
"@apollo/client": "^3.3.11",
"@detox/crypto": "^0.7.1",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/styles": "^4.11.3",
"apollo-server-express": "^2.21.1",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"execa": "^5.0.0",
"express": "^4.17.1",
"graphql": "^15.5.0",
"graphql-import-node": "0.0.4",
"helmet": "^4.4.1",
"js-cookie": "^2.2.1",
"js-md5": "^0.7.3",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.4",
"next": "^10.0.8",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-qr-svg": "^2.3.0",
"typescript": "^4.2.3",
"wireguard-wrapper": "^1.0.3"
}
}