forked from JaeSeoKim/badge42
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.16 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.16 KB
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
69
70
71
72
73
74
{
"name": "badge42",
"version": "1.0.0",
"description": "🚀 Dynamically generated 42 badge for your git readmes.",
"author": "JaeSeoKim <jaeskim@student.42seoul.kr> (jaeskim)",
"homepage": "https://github.com/JaeSeoKim/badge42#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/JaeSeoKim/badge42.git"
},
"bugs": {
"url": "https://github.com/JaeSeoKim/badge42/issues"
},
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon",
"build": "tsc --project tsconfig.json",
"start": "cross-env NODE_ENV=production node dist/server/index.js",
"test": "jest --coverage",
"test:watch": "jest --watch",
"downloadImg": "ts-node --project tsconfig.json src/util/downloadImg.ts"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test"
}
},
"dependencies": {
"@emotion/core": "^10.1.1",
"axios": "^0.21.1",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"koa": "^2.13.0",
"koa-body": "^4.2.0",
"koa-morgan": "^1.0.1",
"koa-router": "^10.0.0",
"koa-static": "^5.0.0",
"lodash": "^4.17.20",
"node-cache": "^5.1.2",
"package.json": "^2.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"string-pixel-width": "^1.10.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-syntax-jsx": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.6.0",
"@types/axios": "^0.14.0",
"@types/jest": "^26.0.19",
"@types/koa": "^2.11.6",
"@types/koa-morgan": "^1.0.4",
"@types/koa-router": "^7.4.1",
"@types/lodash": "^4.14.165",
"@types/node-cache": "^4.2.5",
"@types/react": "^16.14.2",
"@types/react-dom": "^16.9.10",
"@types/string-pixel-width": "^1.7.1",
"babel-jest": "^26.6.3",
"csstype": "^3.0.5",
"husky": "^4.3.6",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}