-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.5 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
{
"name": "wiki-stat-portal",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"lint": "eslint . --ext .ts,.tsx",
"start": "next start -p $PORT",
"build:tools": "cd tools && tsc; cd ..",
"run:dataCacher": "node tools-out/tools/dataCacher/dataCacher"
},
"dependencies": {
"@blueprintjs/core": "^4.10.1",
"@blueprintjs/datetime": "^4.3.12",
"@blueprintjs/popover2": "^1.6.6",
"@blueprintjs/select": "^4.6.6",
"ajv": "^7.0.0-beta.2",
"axios": "^0.24.0",
"classnames": "^2.2.6",
"csv-stringify": "^6.0.5",
"date-fns": "^2.16.1",
"lodash": "^4.17.20",
"mobx": "^6.0.1",
"mobx-react": "^7.0.0",
"moment": "^2.29.1",
"moment-timezone": "^0.5.31",
"mwn": "^1.11.4",
"mysql2": "^2.2.5",
"next": "^12.3.0",
"nookies": "^2.5.2",
"react": "17",
"react-dom": "17",
"react-string-format": "^0.1.0",
"reflect-metadata": "^0.1.10",
"sass": "^1.27.0",
"save-as": "^0.1.8",
"typeorm": "0.2.28",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.19.1",
"@types/lodash": "^4.14.164",
"@types/moment-timezone": "^0.5.30",
"@types/node": "^14",
"@types/react": "^16.9.53",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.11.0",
"eslint-plugin-react": "^7.21.5",
"typescript": "^4.8.3"
}
}