-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.98 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
{
"name": "mirror",
"main": "index.js",
"version": "0.3.0",
"homepage": "https://oliverbalfour.github.io/Mirror",
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/pickers": "^3.2.10",
"@octokit/core": "^3.2.4",
"@reduxjs/toolkit": "^1.5.0",
"@textcomplete/core": "^0.1.8",
"@textcomplete/textarea": "^0.1.8",
"date-fns": "^2.16.1",
"dompurify": "^2.2.6",
"eslint-plugin-react": "^6.10.3",
"idb-keyval": "^3.2.0",
"immer": "^8.0.1",
"katex": "^0.12.0",
"marked": "^2.0.0",
"node-sass": "^4.14.1",
"notistack": "^1.0.3",
"react": "~16.11.0",
"react-beautiful-dnd": "^13.0.0",
"react-dom": "~16.11.0",
"react-redux": "^7.2.2",
"react-scripts": "3.4.3",
"redux-undo": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"eslint": "^6.8.0",
"gh-pages": "^3.1.0",
"react-app-rewired": "^2.1.8",
"source-map-explorer": "^2.5.2"
},
"private": true,
"scripts": {
"prestart": "export REACT_APP_COMMIT_SHA=$(git rev-parse --short HEAD)",
"start": "react-app-rewired start",
"prebuild": "export REACT_APP_COMMIT_SHA=$(git rev-parse --short HEAD)",
"build": "react-app-rewired build",
"prepredeploy": "export REACT_APP_COMMIT_SHA=$(git rev-parse --short HEAD)",
"predeploy": "react-app-rewired build",
"deploy": "gh-pages -d build",
"prepreanalyze": "export REACT_APP_COMMIT_SHA=$(git rev-parse --short HEAD)",
"preanalyze": "react-app-rewired build",
"analyze": "source-map-explorer 'build/**/*'"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}