-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 812 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 812 Bytes
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
{
"name": "vanilla-react",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "http-server -o dist",
"build:babel": "babel src -w -d dist",
"build": "webpack -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheonkyu/vanilla-react.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheonkyu/vanilla-react/issues"
},
"homepage": "https://github.com/cheonkyu/vanilla-react#readme",
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^9.1.0",
"html-webpack-plugin": "^5.5.0",
"http-server": "^14.1.1",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {}
}