-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.38 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
{
"name": "Gotcha",
"version": "1.0.0",
"main": "index.js",
"dependencies": {
"@babel/polyfill": "^7.12.1"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@webcomponents/custom-elements": "^1.5.0",
"autoprefixer": "^10.3.3",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.2.0",
"live-server": "^1.2.1",
"mini-css-extract-plugin": "^2.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.6",
"postcss-loader": "^6.1.1",
"postcss-preset-env": "^6.7.0",
"rimraf": "^2.7.1",
"sass": "^1.38.2",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.0.0"
},
"scripts": {
"start": "run-p watch serve",
"build": "webpack build",
"sass": "sass ./src/scss:css",
"watch": "npm run sass -- --watch",
"serve": "live-server --port=3000",
"clear": "rimraf -rf build dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hoya-kim/Gotcha.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Hoya-kim/Gotcha/issues"
},
"homepage": "https://github.com/Hoya-kim/Gotcha#readme",
"browserslist": [
"defaults",
"not dead",
"> 1% in KR",
"ie 10"
]
}