-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.26 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
{
"name": "a-or-b-ugc",
"version": "1.0.0",
"description": "1-person side project for user-generated content platform",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"start": "webpack && python manage.py runserver"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HyunSangHan/a-or-b-ugc.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/HyunSangHan/a-or-b-ugc/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,scss}": [
"prettier --write",
"git add"
]
},
"homepage": "https://github.com/HyunSangHan/a-or-b-ugc#readme",
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"babel-loader": "^8.0.6",
"banner-plugin": "^1.0.10",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.2",
"husky": "^4.0.10",
"lint-staged": "^9.5.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"prettier": "^1.19.1",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"core-js": "2"
}
}