-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.53 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
{
"name": "chess-stats",
"version": "2.1.0",
"private": true,
"license": "MIT",
"keywords": [
"nextjs",
"starter",
"typescript"
],
"scripts": {
"build": "next build",
"ci": "yarn ts && yarn lint && yarn test:ci",
"dev": "next",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"lint:fix": "npm run eslint -- --fix",
"lint": "eslint \"*/**/*.{ts,tsx}\"",
"release": "np",
"start": "next start -p 80",
"test:ci": "jest --runInBand",
"test:coverage": "jest --coverage --maxWorkers=50%",
"test:watch": "jest --watch --maxWorkers=25%",
"test": "jest --maxWorkers=50%",
"ts:watch": "tsc --watch",
"ts": "tsc"
},
"dependencies": {
"@microsoft/applicationinsights-react-js": "3.1.5",
"@microsoft/applicationinsights-web": "2.6.5",
"@mliebelt/pgn-parser": "1.2.6",
"apexcharts": "3.26.0",
"axios": "0.21.1",
"chess-eco-codes": "0.0.0",
"chess.js": "0.12.1",
"clsx": "1.1.1",
"date-fns": "2.21.1",
"lodash.chunk": "4.2.0",
"lodash.mergewith": "4.6.2",
"mobx": "6.3.3",
"mobx-react-lite": "3.2.1",
"next": "10.1.3",
"nookies": "2.5.2",
"np": "7.5.0",
"react": "17.0.2",
"react-apexcharts": "1.3.9",
"react-dom": "17.0.2",
"semantic-ui-css": "2.4.1",
"semantic-ui-react": "2.0.3",
"technicalindicators": "3.1.0"
},
"devDependencies": {
"@babel/plugin-syntax-jsx": "7.12.13",
"@babel/preset-env": "7.13.15",
"@babel/preset-react": "7.13.13",
"@testing-library/react": "12.0.0",
"@types/axios": "0.14.0",
"@types/chess.js": "0.11.2",
"@types/date-fns": "2.6.0",
"@types/jest": "26.0.22",
"@types/lodash.chunk": "4.2.6",
"@types/lodash.mergewith": "4.6.6",
"@types/node": "14.14.37",
"@types/nookies": "2.0.3",
"@types/react": "17.0.3",
"@types/react-dom": "17.0.3",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"babel-core": "6.26.3",
"babel-jest": "26.6.3",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"eslint": "7.25.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-destructuring": "2.2.1",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-typescript-sort-keys": "1.6.0",
"identity-obj-proxy": "3.0.0",
"jest": "26.6.3",
"jest-simple-dot-reporter": "1.0.5",
"prettier": "2.2.1",
"ts-jest": "26.5.5",
"typescript": "4.2.4"
}
}