-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
98 lines (98 loc) · 3.57 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
{
"name": "teachla-frontend",
"version": "0.1.0",
"private": true,
"type": "module",
"homepage": "https://editor.uclaacm.com",
"dependencies": {
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-python": "^6.1.4",
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@types/crypto-js": "^4.2.2",
"@uiw/codemirror-theme-bbedit": "^4.21.23",
"@uiw/codemirror-theme-sublime": "^4.21.23",
"@uiw/react-codemirror": "^4.21.21",
"@vitejs/plugin-react": "^4.2.1",
"bootstrap": ">=5.3.2",
"codemirror": "^6.0.1",
"crypto-js": "^4.2.0",
"firebase": "^10.7.2",
"history": "^5.3.0",
"immutable": "^4.3.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-modal": "^3.16.1",
"react-redux": "^9.1.0",
"react-router": "^6.21.3",
"react-router-dom": "^6.21.3",
"react-spinners": "^0.13.8",
"react-split-pane": "^0.1.92",
"reactstrap": "^9.2.2",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0",
"skulpt": "^1.2.0",
"vite": "^5.0.12"
},
"scripts": {
"lint": "lint-staged",
"lint-full": "eslint \"**/*.{js,jsx,ts,tsx}\" && stylelint \"**/*.css\" \"**/*.scss\"",
"lint-full-fix": "eslint --fix \"**/*.js\" && stylelint --fix \"**/*.css\" \"**/*.scss\"",
"lint-css": "stylelint \"**/*.css\" \"**/*.scss\"",
"lint-css-fix": "stylelint --fix \"**/*.css\" \"**/*.scss\"",
"lint-css-changes": "stylelint $(git diff --name-only --diff-filter=d origin/master... | grep -E '\\.(css|scss)$' || echo \"src/styles/app.scss\")",
"lint-js": "eslint \"**/*.js\"",
"lint-js-fix": "eslint --fix \"**/*.js\"",
"lint-js-changes": "eslint $(git diff --name-only --diff-filter=d origin/master... | grep -E '\\.(js|jsx)$')",
"lint-ts": "eslint \"**/*.{ts,tsx}\"",
"lint-ts-fix": "eslint --fix \"**/*.{ts,tsx}\"",
"lint-ts-changes": "eslint $(git diff --name-only --diff-filter=d origin/master... | grep -E '\\.(ts|tsx)$')",
"staging_start": "cross-env VITE_DB=staging VITE_BACKEND=staging vite",
"staging_build": "cross-env VITE_DB=staging VITE_BACKEND=staging vite build",
"prepare": "husky",
"pre-commit": "lint-staged; exit 0",
"prod_start": "cross-env VITE_DB=prod VITE_BACKEND=prod vite",
"prod_build": "cross-env VITE_DB=prod VITE_BACKEND=prod vite build"
},
"devDependencies": {
"@types/node": "^20.11.20",
"@types/react": "^18.2.58",
"@types/react-dom": "^18.2.19",
"@types/react-modal": "^3.16.3",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.1",
"prettier": "^3.2.4",
"sass": "^1.70.0",
"stylelint": "^16.2.0",
"stylelint-config-sass-guidelines": "^11.0.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-scss": "^6.1.0",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.css": "stylelint --fix",
"*.{js,css,md}": "prettier --write",
"*.{ts,tsx}": "eslint --cache --fix"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}