-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 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
69
70
71
72
{
"name": "wpcs2",
"version": "1.0.0",
"description": "no description",
"homepage": "https://github.com/ProgrammingDaisukiClub/WPCS2#readme",
"bugs": {
"url": "https://github.com/ProgrammingDaisukiClub/WPCS2/issues"
},
"license": "ISC",
"author": "",
"main": "",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProgrammingDaisukiClub/WPCS2.git"
},
"scripts": {
"dev-build": "NODE_ENV=development webpack --progress --colors",
"dev-watch": "NODE_ENV=development webpack --progress --colors --watch",
"heroku-prebuild": "npm install --dev",
"prod-build": "NODE_ENV=production webpack",
"heroku-postbuild": "npm run prod-build",
"prettier": "prettier --write src/**/*.{js,jsx,ts,tsx,json}"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{app,spec}/**/*.{rb}": [
"bundle exec rubocop",
"git add"
],
"*.{js,css,json,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@types/katex": "^0.11.0",
"@types/marked": "1.2.2",
"@types/react": "^16.14.6",
"@types/react-dom": "^16.9.12",
"@types/react-router": "^5.1.18",
"@types/react-router-dom": "^5.1.7",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.2.1",
"ts-loader": "^8.2.0",
"typescript": "^4.2.4",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"i18n-webpack-plugin": "^1.0.0",
"marked": "^2.0.3",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-render-html": "^0.6.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"whatwg-fetch": "^3.6.2"
},
"engines": {
"node": "^16.20.0",
"npm": "^8.19.4"
}
}