-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.12 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "hero-masq",
"version": "1.0.2",
"description": "dnsmasq config manager",
"main": "index.js",
"license": "MIT",
"repository": "https://github.com/pixeldrew/hero-masq.git",
"scripts": {
"dev": "nodemon server",
"build": "next build",
"postinstall": "npm run clean && npm run build",
"start": "NODE_ENV=production node server",
"test": "NODE_ENV=test jest",
"clean": "rimraf .next/ coverage/"
},
"engines": {
"node": ">=13"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint ./",
"pretty-quick --staged"
]
},
"nodemonConfig": {
"watch": [
"routes.js",
"next.config.js",
"server/**/*.js",
"lib/constants.js",
"server/schema.graphql"
],
"delay": "2500"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"@apollo/react-ssr": "^3.1.3",
"@material-ui/core": "^4.9.3",
"@material-ui/icons": "^4.9.1",
"apollo-boost": "^0.4.7",
"apollo-cache-inmemory": "^1.6.5",
"apollo-client": "^2.6.8",
"apollo-link": "^1.2.13",
"apollo-link-context": "^1.0.19",
"apollo-link-error": "^1.1.12",
"apollo-link-http": "^1.5.16",
"apollo-link-ws": "^1.0.19",
"apollo-server-express": "^2.10.1",
"apollo-utilities": "^1.3.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"date-fns": "^2.9.0",
"dnsmasq-leases": "^0.1.2",
"dotenv-defaults": "^1.1.1",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"express-unless": "^0.5.0",
"find-process": "^1.4.3",
"fs-extra": "^8.1.0",
"graphql": "^14.6.0",
"graphql-iso-date": "^3.6.1",
"graphql-subscriptions": "^1.1.0",
"graphql-tag": "^2.10.3",
"graphql-tools": "^4.0.6",
"graphql-validated-types": "^2.7.0",
"helmet": "^3.21.2",
"isomorphic-unfetch": "^3.0.0",
"js-cookie": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"lodash.debounce": "^4.0.8",
"netmask": "^1.0.6",
"next": "^9.2.1",
"next-offline": "^5.0.0",
"next-routes": "^1.4.2",
"notistack": "^0.9.8",
"qs-stringify": "^1.2.0",
"react": "^16.12.0",
"react-apollo": "^3.1.3",
"react-dom": "^16.12.0",
"react-text-mask": "^5.4.3",
"subscriptions-transport-ws": "^0.9.16",
"winston": "^3.2.1",
"yup": "^0.28.1"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.3.0",
"husky": "^4.2.1",
"jest": "^25.1.0",
"lint-staged": "^10.0.7",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"prop-types": "^15.7.2",
"react-test-renderer": "^16.12.0",
"react-testing-library": "^8.0.1",
"rimraf": "^3.0.2"
}
}