-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 2.13 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
{
"name": "mobx-local-global-stores",
"version": "1.0.0",
"scripts": {
"dev": "CLIENT_ENV=development next dev",
"build": "next build",
"start": "next start",
"---------- Testing ----------------------------------------------------": "",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci",
"---------- Linting ----------------------------------------------------": "",
"lint": "next lint",
"prettier": "npx prettier --write \"./**/*.{ts,tsx,js,jsx,json,md}\"",
"ts": "tsc --noEmit",
"ts:watch": "npm run ts -- --watch",
"---------- Analyze ----------------------------------------------------": "",
"analyze": "cross-env ANALYZE=true next build",
"---------- helper commands --------------------------------------------": "",
"generate": "node ./tools/generate.js",
"up": "yarn upgrade-interactive --latest",
"-----------------------------------------------------------------------": ""
},
"dependencies": {
"@material-ui/core": "4.12.4",
"axios": "0.26.1",
"clsx": "1.1.1",
"dayjs": "1.11.0",
"lodash.groupby": "4.6.0",
"lodash.orderby": "4.6.0",
"mobx": "6.5.0",
"mobx-react-lite": "3.3.0",
"next": "12.1.4",
"notistack": "1.0.5",
"nprogress": "0.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"sass": "1.50.0",
"semantic-ui-css": "2.4.1",
"semantic-ui-react": "2.1.2"
},
"devDependencies": {
"@next/bundle-analyzer": "12.1.4",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "14.0.4",
"@types/lodash.groupby": "4.6.6",
"@types/lodash.orderby": "4.6.6",
"@types/node": "17.0.23",
"@types/nprogress": "0.2.0",
"@types/react": "17.0.39",
"cross-env": "7.0.3",
"duplicate-package-checker-webpack-plugin": "3.0.0",
"eslint": "8.13.0",
"eslint-config-next": "12.1.4",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-testing-library": "5.2.1",
"generate-template-files": "3.2.0",
"jest": "27.5.1",
"next-compose-plugins": "2.2.1",
"typescript": "4.6.3"
},
"license": "MIT"
}