This repository has been archived by the owner on Feb 24, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
96 lines (96 loc) · 3.34 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
{
"name": "s8-website",
"version": "0.1.0",
"engines": {
"node": "14"
},
"license": "AGPL-3.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:commercial": "NEXT_PUBLIC_IS_COMMERCIAL=true yarn dev",
"test": "jest",
"test:fix-snapshots": "jest -u",
"test:watch": "jest --watch",
"analyze": "ANALYZE=true yarn build",
"build": "next build",
"export": "yarn build && next export",
"start": "next start",
"lint": "next lint",
"buildinfo": "ts-node --project ./node.tsconfig.json ./src/scripts/BuildInfoJson.ts",
"apollo:generate": "apollo codegen:generate --target typescript --endpoint http://localhost:8082/graphql --outputFlat src/gql/generated --passthroughCustomScalars --customScalarsPrefix S8"
},
"dependencies": {
"@apollo/client": "^3.6.6",
"@babel/core": "^7.16.0",
"@emotion/react": "^11.4.1",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@hcaptcha/react-hcaptcha": "^0.3.10",
"@mui/icons-material": "^5.0.4",
"@mui/lab": "^5.0.0-alpha.51",
"@mui/material": "^5.0.4",
"@scale8/mui-daterange-picker": "^0.0.6",
"@scale8/s8-interpreter": "^0.3.2",
"@stripe/react-stripe-js": "^1.4.1",
"@stripe/stripe-js": "^1.17.1",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@types/js-beautify": "^1.13.3",
"@types/node": "^16.7.10",
"@types/qrcode.react": "^1.0.2",
"@types/react": "^17.0.45",
"@types/react-color": "^3.0.5",
"@types/react-dom": "^17.0.17",
"@types/react-sparklines": "^1.7.1",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"ace-builds": "^1.4.12",
"apollo": "^3.0.0-alpha.2",
"arraybuffer-loader": "^1.0.8",
"babel-jest": "^27.3.1",
"chart.js": "^3.7.1",
"clsx": "^1.1.1",
"date-fns": "^2.23.0",
"eslint": "^7.23.0",
"eslint-config-next": "^12.0.3",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.2.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unused-imports": "^1.1.5",
"file-loader": "^6.2.0",
"graphql": "^14.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"js-beautify": "^1.14.0",
"js-sourcemap": "^0.0.6",
"markdown-to-jsx": "^7.1.3",
"next": "^12.1.6",
"prettier": "^2.4.1",
"prop-types": "^15.7.2",
"qrcode.react": "^3.0.1",
"react": "17.0.2",
"react-ace": "^9.4.3",
"react-chartjs-2": "3.3.0",
"react-color": "^2.19.3",
"react-dom": "17.0.2",
"react-json-tree": "^0.17.0",
"react-sparklines": "^1.7.0",
"rimraf": "^3.0.2",
"shiki": "^0.10.1",
"ts-node": "^10.4.0",
"typescript": "^4.7.2",
"wasm-dce": "^1.0.2",
"wasm-loader": "^1.3.0",
"webpack": "^5.51.2",
"webpack-bundle-analyzer": "^4.5.0"
},
"resolutions": {
"lodash": "4.17.21",
"git-parse": "^2.1.1",
"@types/react": "17.0.45",
"@types/react-dom": "^17.0.17",
"shelljs": "^0.8.5"
}
}