-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
{
"name": "toss-tech-router",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack && http-server",
"lint": "eslint --fix ./src",
"prettier:write": "prettier --write ./src",
"prettier:check": "prettier --check ./src",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/f-lab-edu/toss-tech-router.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/f-lab-edu/toss-tech-router/issues"
},
"homepage": "https://github.com/f-lab-edu/toss-tech-router#readme",
"dependencies": {
"msw": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/plugin-transform-modules-commonjs": "^7.21.2",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"axios": "^1.3.4",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"prettier": "^2.8.4",
"style-loader": "^3.3.1",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1"
},
"lint-staged": {
"**/*.{js,html,css,json}": "npm run prettier:check",
"**/*.{js}": "npm run lint"
},
"msw": {
"workerDirectory": "public"
}
}