-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.87 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
{
"name": "procon_bypass_man_setting_editor",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.9",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.18.6",
"@emotion/react": "^11.4.0",
"@types/jest": "^28.1.3",
"@types/js-yaml": "^4.0.2",
"@types/lodash": "^4.14.172",
"@types/md5": "^2.3.1",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"babel-jest": "^28.1.1",
"babel-loader": "^8.2.2",
"css-loader": "^6.7.1",
"deep-object-diff": "^1.1.0",
"eslint": "^8.5.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"file-loader": "^6.2.0",
"gh-pages": "^4.0.0",
"html-webpack-plugin": "^5.3.1",
"jest": "^28.1.3",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"prettier": "^2.5.1",
"style-loader": "^3.3.1",
"ts-jest": "^28.0.5",
"ts-loader": "^9.2.3",
"ts-node": "^10.9.1",
"typescript": "^4.3.4",
"webpack": "^5.39.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.9.2"
},
"scripts": {
"build": "webpack",
"dev": "webpack serve",
"deploy": "yarn run release-build && gh-pages -d dist -u 'github-actions-bot <[email protected]>'",
"release-build": "NODE_ENV=production webpack",
"test": "jest",
"test:lint": "eslint src",
"format": "prettier --write src "
},
"dependencies": {
"@types/react-router-dom": "^5.1.7",
"axios": "^0.27.2",
"bootstrap": "^5.1.3",
"compare-versions": "^6.0.0-rc.1",
"react": "^18.2.0",
"react-bootstrap": "^2.4.0",
"react-dom": "^18.2.0",
"react-github-fork-ribbon": "^0.7.1",
"react-router-dom": "^6.3.0"
}
}