forked from codeisneverodd/programmers-coding-test
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 900 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 900 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
33
{
"name": "programmers-coding-test",
"version": "1.0.0",
"description": "🌱 프로그래머스의 [코딩테스트 문제]",
"type": "module",
"scripts": {
"build": "node ./utils/build.js",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeisneverodd/programmers-coding-test.git"
},
"author": "cruelladevil <dev.timetravel@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/codeisneverodd/programmers-coding-test/issues"
},
"homepage": "https://github.com/codeisneverodd/programmers-coding-test#readme",
"dependencies": {
"axios": "^1.1.2",
"cheerio": "^1.0.0-rc.10",
"node-fetch": "^3.2.3",
"prettier": "^2.7.1"
},
"devDependencies": {
"husky": "^8.0.1",
"lint-staged": "^13.0.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}