This repository was archived by the owner on Mar 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·67 lines (67 loc) · 1.65 KB
/
package.json
File metadata and controls
executable file
·67 lines (67 loc) · 1.65 KB
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
{
"name": "@framemuse/framemuse-galaxy",
"version": "0.0.4",
"type": "module",
"description": "workpspace for bit developing",
"main": "index.ts",
"publishConfig": {
"registry": "https://npm.pkg.github.com/",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FrameMuse/FrameMuse-Galaxy.git"
},
"engines": {
"node": "14.x",
"vscode": "^1.22.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build -- --profile",
"test": "react-scripts test",
"esfix": "eslint src --fix",
"pm2": "pm2 start 'npm start'"
},
"author": "framemuse",
"license": "MIT",
"dependencies": {
"@reduxjs/toolkit": "^1.6.1",
"node-sass": "^6.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.4",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"redux": "^4.1.0",
"redux-thunk": "^2.3.0",
"sass-loader": "^10.2.0",
"web-vitals": "^2.1.0"
},
"devDependencies": {
"@types/node": "^15.12.4",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@types/react-router": "^5.1.16",
"@types/react-router-dom": "^5.1.8",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.31.0",
"eslint-plugin-react": "^7.24.0",
"typescript": "^4.3.5",
"vscode": "^1.1.37"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}