-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 737 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 737 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
{
"name": "css-wonders",
"repository": "https://github.com/JamesKoenig/css-wonders",
"homepage": "https://css-wonders.herokuapp.com/",
"author": "James Koenig <Koenig.James@Live.com>",
"license": "BSD 3-Clause License",
"private": true,
"dependencies": {
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.9",
"@babel/runtime": "^7.13.9",
"babel-loader": "^8.2.2",
"webpack": "^5.24.2",
"webpack-cli": "^4.5.0"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
["@babel/transform-runtime", {
"regenerator": true
}]
]
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.13.9",
"webpack-dev-server": "^3.11.2"
}
}