-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 1.81 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
{
"name": "hestia",
"version": "1.5.5",
"description": "An UI for MIRAI - the Multijudge Independently Rebuilt, Asynchoronus Interface",
"main": "index.js",
"private": true,
"dependencies": {
"@material-ui/core": "^3.7.0",
"@material-ui/icons": "^3.0.1",
"dayjs": "^1.8.8",
"gzip-all": "^1.0.0",
"hasbin": "^1.2.3",
"husky": "^1.3.1",
"i18next": "^15.1.0",
"lint-staged": "^8.1.5",
"notistack": "^0.7.0",
"react": "^16.6.3",
"react-ace": "^6.4.0",
"react-dom": "^16.6.3",
"react-file-drop": "^0.2.8",
"react-globally": "^1.1.0",
"react-i18next": "^9.0.10",
"react-router-dom": "^4.3.1",
"react-scripts": "^2.1.5"
},
"scripts": {
"start": "node scripts/version.js bypass-tag && react-scripts start",
"build": "node scripts/version.js && react-scripts build && node scripts/gzip-all.js",
"build:custom": "node scripts/version.js bypass-tag && react-scripts build && node scripts/gzip-all.js",
"test": "react-scripts test",
"format": "prettier --write \"src/app/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"prettilint": "prettier --check \"src/app/**/*.{js,jsx,ts,tsx,json,css,scss,md}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/vnma0/hestia.git"
},
"author": "vnma0",
"license": "MIT",
"bugs": {
"url": "https://github.com/vnma0/hestia/issues"
},
"homepage": "./",
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"proxy": "http://localhost:3001",
"devDependencies": {
"prettier": "1.16.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss}": [
"prettier --write",
"git add"
]
}
}