This repository has been archived by the owner on Jan 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "harmony-ide",
"version": "0.2.1",
"private": true,
"homepage": "https://harmony.cs.cornell.edu/ide",
"dependencies": {
"@material-ui/codemod": "^4.5.0",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/styles": "^4.11.1",
"@monaco-editor/react": "^4.0.9",
"@sentry/browser": "^5.29.0",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.5.0",
"@types/jest": "^26.0.21",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.35",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"axios": "^0.21.1",
"babel-plugin-import": "^1.13.3",
"camelcase": "^6.2.0",
"customize-cra": "^1.0.0",
"firebase": "^8.2.0",
"html-loader": "^2.1.2",
"jszip": "^3.6.0",
"lodash": "^4.17.21",
"mdi-material-ui": "^6.20.0",
"moment": "^2.29.1",
"react": "^16.14.0",
"react-app-rewired": "^2.1.8",
"react-contexify": "^5.0.0",
"react-dom": "^16.14.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"react-swipeable-views": "0.13.9",
"reading-time": "^1.2.1",
"source-map-explorer": "^2.5.1",
"timeago.js": "^4.0.2",
"typeface-roboto": "^1.1.13",
"typescript": "^4.2.3",
"validate.js": "^0.13.1"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"analyze": "source-map-explorer 'build/static/js/*.js'"
},
"eslintConfig": {
"extends": [
"react-app",
"prettier"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"eslint-config-prettier": "^8.1.0",
"husky": "=4",
"lint-staged": ">=10",
"prettier": "2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}