-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.46 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.46 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
{
"name": "school-meal-extension",
"version": "1.0.0",
"private": true,
"scripts": {
"prebuild": "rm -rf dist && mkdir dist",
"watch": "yarn prebuild && ./node_modules/.bin/webpack --watch --config webpack/webpack.dev.js",
"build:dev": "yarn prebuild && ./node_modules/.bin/webpack --config webpack/webpack.dev.js",
"build:prod": "yarn prebuild && ./node_modules/.bin/webpack --config webpack/webpack.prod.js",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore ."
},
"description": "전국 초, 중, 고등학교 급식 보기",
"repository": "https://github.com/heavy-strong/school-meal-extension",
"author": "이중무 <jrady721@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/eslint-parser": "^7.21.8",
"@babel/preset-env": "^7.22.4",
"@babel/preset-react": "^7.22.3",
"@types/chrome": "^0.0.217",
"@types/jquery": "^3.5.16",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.42.0",
"eslint-plugin-react": "^7.32.2",
"ts-loader": "^9.4.2",
"typescript": "^5.1.3",
"webpack": "^5.85.0",
"webpack-cli": "^5.0.1",
"webpack-merge": "^5.9.0"
},
"dependencies": {
"babel-loader": "^9.1.2",
"jquery": "^3.6.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}