-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.45 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
{
"name": "learn-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "rm -rf ./.next ./out && next build && next export",
"start": "next start",
"test": "NODE_ENV=test jest --no-cache --env=jsdom",
"test:ci": "NODE_ENV=test jest --ci --reporters=default --reporters=jest-junit --no-cache",
"storybook": "start-storybook -p 6006 -s ./public",
"build-storybook": "build-storybook",
"lint:ts": "eslint --ext .ts,.tsx ."
},
"dependencies": {
"@material-ui/core": "^4.10.1",
"@material-ui/icons": "^4.9.1",
"camelcase-keys": "^6.2.2",
"date-fns": "^2.14.0",
"isomorphic-unfetch": "^3.0.0",
"next": "9.3.5",
"next-i18next": "^4.4.2",
"notistack": "^0.9.17",
"query-string": "^6.13.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-use": "^17.2.4",
"snakecase-keys": "^3.2.0",
"styled-components": "^5.1.1",
"tslint": "^6.1.2",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-decorators": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@babel/preset-typescript": "^7.10.1",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-info": "^5.3.19",
"@storybook/addon-links": "^5.3.19",
"@storybook/addon-viewport": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/react": "^5.3.19",
"@types/jest": "^26.0.6",
"@types/node": "^14.0.11",
"@types/react": "^16.9.35",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-require-context-hook": "^1.0.0",
"babel-plugin-styled-components": "^1.10.7",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-react": "^7.20.0",
"jest": "^26.1.0",
"jest-junit": "^11.0.1",
"jest-snapshot": "^26.1.0",
"jest-styled-components": "^7.0.2",
"next-images": "^1.4.0",
"prettier": "^2.0.5",
"react-docgen-typescript-loader": "^3.7.2",
"storybook-addon-i18n": "^5.1.13",
"storybook-addon-material-ui": "^0.9.0-alpha.21",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^5.0.0",
"tslint-react-hooks": "^2.2.2",
"typescript": "^4.2.3"
}
}