-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.76 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
{
"name": "wi-daq",
"version": "0.0.1",
"scripts": {
"dev:server": "rimraf .dist && nodemon server/index.ts",
"dev:worker": "nodemon workers/index.ts",
"test": "jest",
"clean": "rimraf .dist",
"build": "next build && tsc --project server/tsconfig.json",
"start:server": "cross-env NODE_ENV=production node .dist/server/index.js",
"start:worker": "cross-env NODE_ENV=production node .dist/workers/index.js"
},
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"@apollo/client": "^3.2.0",
"@date-io/core": "^1.3.6",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@typegoose/typegoose": "^7.4.1",
"apollo-link-schema": "^1.2.5",
"apollo-server": "^2.15.0-alpha.1",
"aws-sdk": "^2.824.0",
"bootstrap": "^4.5.0",
"bson": "^4.0.4",
"class-validator": "^0.12.2",
"cookie": "^0.4.1",
"cross-env": "^7.0.2",
"cross-fetch": "^3.0.6",
"dotenv": "^8.2.0",
"downloadjs": "^1.4.7",
"graphql": "^15.3.0",
"graphql-mqtt-subscriptions": "henhen724/graphql-mqtt-subscriptions#distribution",
"graphql-request": "^3.1.0",
"graphql-scalars": "^1.2.1",
"graphql-subscriptions": "^1.1.0",
"isomorphic-unfetch": "^3.0.0",
"jquery": "^3.5.1",
"json-schema": "^0.2.5",
"json2csv": "^5.0.3",
"jsonwebtoken": "^8.5.1",
"luxon": "^1.25.0",
"material-table": "1.67.1",
"mongoose": "^5.11.10",
"next": "^10.0.9",
"popper.js": "^1.16.1",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"recharts": "^1.8.5",
"reflect-metadata": "^0.1.13",
"subscriptions-transport-ws": "^0.9.18",
"type-graphql": "^1.0.0",
"uuid": "8.1.0",
"ws": "^7.3.0"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@types/accept": "^3.1.1",
"@types/aws-sdk": "^2.7.0",
"@types/babel__generator": "^7.6.3",
"@types/chai": "^4.2.12",
"@types/cookie": "^0.4.0",
"@types/downloadjs": "^1.4.2",
"@types/jest": "^26.0.14",
"@types/json-schema": "^7.0.6",
"@types/json2csv": "^5.0.1",
"@types/jsonwebtoken": "^8.5.0",
"@types/luxon": "^1.25.0",
"@types/micro": "^7.3.3",
"@types/mongoose": "^5.10.3",
"@types/node": "^14.0.14",
"@types/react": "^16.9.41",
"@types/recharts": "^1.8.15",
"@types/uuid": "^8.3.0",
"@zeit/next-typescript": "^1.1.1",
"apollo-server-testing": "^2.15.0-alpha.1",
"babel-plugin-transform-typescript-metadata": "^0.3.0",
"chai": "^4.2.0",
"enzyme": "^3.11.0",
"expect": "^26.4.2",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"ts-jest": "^26.3.0",
"ts-node": "^8.10.2",
"typescript": "^4.1.5"
}
}