-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.68 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "tossclone",
"version": "1.0.0",
"description": "f-lab",
"main": "src/index.ts",
"scripts": {
"start": "webpack && node server.ts",
"build": "webpack",
"lint": "lint-staged",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://myusername:[email protected]/choihansu97/tossClone.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/choihansu97/tossClone/issues"
},
"homepage": "https://github.com/choihansu97/tossClone#readme",
"dependencies": {
"@types/file-loader": "^5.0.1",
"axios": "^1.4.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"eslint-plugin-node": "^11.1.0",
"faker": "^6.6.6",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"prettier": "^2.8.8",
"style-loader": "^3.3.2",
"typescript": "^5.0.4",
"webpack": "^5.80.0",
"webpack-cli": "^5.0.2",
"webpack-dev-server": "^4.13.3"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"express": "^4.18.2",
"mini-css-extract-plugin": "^2.7.5",
"msw": "^1.2.1",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"webpack-cli": "^5.0.2"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"eslint --fix"
]
},
"msw": {
"workerDirectory": "public"
}
}