This repository has been archived by the owner on May 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
100 lines (100 loc) · 2.82 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
93
94
95
96
97
98
99
100
{
"name": "daizu-onine-judge",
"version": "0.1.0",
"private": true,
"dependencies": {
"@auth0/auth0-react": "^1.0.0",
"@auth0/auth0-spa-js": "^1.7.0",
"@material-ui/core": "^4.9.5",
"@material-ui/icons": "^4.9.1",
"@nteract/markdown": "^4.3.7",
"@types/react-slick": "^0.23.4",
"axios": "^0.21.1",
"axios-mock-adapter": "^1.17.0",
"codemirror": "^5.52.0",
"history": "^4.10.1",
"material-ui-flat-pagination": "^4.1.0",
"normalizr": "^3.6.0",
"onchange": "^6.1.0",
"prop-types": "^15.7.2",
"qs": "^6.9.1",
"query-string": "^6.11.1",
"react": "^16.13.0",
"react-codemirror2": "^6.0.0",
"react-dom": "^16.13.0",
"react-markdown": "^4.3.1",
"react-redux": "^7.2.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.3",
"react-slick": "^0.25.2",
"react-swipeable-views": "^0.13.9",
"react-syntax-highlighter": "^12.2.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"storybook-react-router": "^1.0.8",
"styled-components": "^5.0.1",
"tslint": "^6.0.0",
"url-pattern": "^1.0.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prettier-watch": "onchange './src/**/*.{js,scss,json,css}' -- prettier --config ./.prettierrc.json --write {{changed}}",
"fmt": "prettier --write src/**/*.js",
"mock": "node ./node_modules/axios-mock-server/bin/index.js -b",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-docs": "^5.3.19",
"@storybook/addon-knobs": "^5.3.19",
"@storybook/addon-links": "^5.3.13",
"@storybook/addons": "^5.3.19",
"@storybook/preset-create-react-app": "^2.0.0",
"@storybook/react": "^5.3.14",
"@storybook/source-loader": "^5.3.19",
"axios-mock-server": "^0.16.3",
"eslint": "^6.6.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1",
"slick-carousel": "^1.8.1",
"storybook-addon-material-ui": "^0.9.0-alpha.21",
"webpack": "^4.42.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
}
}