This repository has been archived by the owner on May 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.88 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": "club-calendar",
"version": "1.0.0",
"description": "",
"private": true,
"main": "index.js",
"scripts": {
"dev": "npm-run-all -p dev:*",
"dev:next": "NODE_OPTIONS='--inspect' next",
"dev:api": "webpack --mode=development && node ./dist/bundle.js",
"build": "npm-run-all -p build:*",
"build:next": "next build",
"build:api": "webpack --mode=production",
"start": "npm-run-all -p start:*",
"start:next": "next start",
"start:api": "node ./dist/bundle.js",
"test": "jest",
"lint": "eslint --ignore-path .gitignore 'src/**/*.{js,jsx,ts,tsx}'"
},
"keywords": [],
"author": "MikuroXina",
"license": "UNLICENSED",
"dependencies": {
"express": "^4.17.1",
"mysql": "^2.18.1",
"next": "^10.0.4",
"object-hash": "^2.0.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"swr": "^0.3.6"
},
"devDependencies": {
"@speee-js/jsx-slack": "^2.5.1",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.14",
"@types/micro": "^7.3.3",
"@types/mysql": "^2.15.15",
"@types/node": "^14.11.10",
"@types/object-hash": "^1.3.4",
"@types/react": "^16.9.53",
"@types/webpack": "^4.41.22",
"@types/webpack-dev-middleware": "^3.7.2",
"@types/webpack-hot-middleware": "^2.25.3",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"dotenv": "^8.2.0",
"dotenv-webpack": "^4.0.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"jest": "^26.6.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"ts-jest": "^26.4.1",
"ts-loader": "^8.0.6",
"typescript": "^4.1.3",
"webpack": "^5.1.3",
"webpack-cli": "^4.1.0",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-node-externals": "^2.5.2"
}
}