-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.71 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
{
"type": "module",
"dependencies": {
"@apollo/client": "^3.6.9",
"@apollo/react-hooks": "^4.0.0",
"@mdi/js": "^5.9.55",
"@mdi/react": "^1.4.0",
"@types/react": "^17.0.0",
"@welldone-software/why-did-you-render": "^6.0.5",
"apollo-cache-inmemory": "^1.6.6",
"apollo-cache-persist": "^0.1.1",
"apollo-link-http": "^1.5.17",
"apollo-server": "^3.10.0",
"apollo-server-express": "^3.10.0",
"aws-sdk": "^2.834.0",
"braintree-web-drop-in-react": "^1.2.1",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"esbuild": "^0.14.49",
"esbuild-copy-static-files": "^0.1.0",
"esbuild-plugin-svgr": "^1.0.1",
"event-target-shim": "^6.0.2",
"express": "^4.17.1",
"glob": "^8.0.3",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"harmony-reflect": "^1.6.1",
"isomorphic-fetch": "^3.0.0",
"mailgun.js": "^7.0.4",
"polished": "^4.1.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-hot-toast": "^2.3.0",
"react-imported-component": "^6.3.13",
"react-is": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-router-hash-link": "^2.3.1",
"react-router-scroll-4": "^1.0.0-beta.2",
"sqlite": "^4.0.19",
"sqlite3": "^5.0.1",
"styled-components": ">=5.2.1",
"use-http": "^1.0.16",
"uuid": "^8.3.2"
},
"browserslist": "> 0.25%, not dead",
"script-shell": "/usr/bin/env bash",
"scripts": {
"start-server": "node -r dotenv/config server/index.js",
"clean": "rm -rf build && rm -rf .cache",
"build": "node -r dotenv/config esbuild.config.js"
},
"devDependencies": {
"husky": ">=4",
"lint-staged": ">=10",
"prettier": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}