-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.67 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
{
"name": "cowcat_node",
"version": "1.0.0",
"description": "This is a node team project of cowcat team.",
"type": "module",
"main": "src/index.js",
"scripts": {
"lint": "eslint src",
"fix": "eslint ./src --fix",
"start": "cross-env NODE_ENV=development nodemon src/index.js",
"start_test": "cross-env NODE_ENV=test nodemon src/index.js",
"deploy": "cross-env NODE_ENV=production pm2 start src/index.js",
"stop": "pm2 stop all",
"log": "pm2 log",
"monit": "pm2 monit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mash-up-kr/CowCat_Node.git"
},
"author": "kor-Chipmunk, batboy118, nari1021",
"license": "ISC",
"bugs": {
"url": "https://github.com/mash-up-kr/CowCat_Node/issues"
},
"homepage": "https://github.com/mash-up-kr/CowCat_Node#readme",
"lint-staged": {
"*.js": [
"eslint . --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"axios": "^0.21.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"ioredis": "^4.23.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"mysql2": "^2.2.5",
"pm2": "^4.5.6",
"sequelize": "^6.5.0",
"sequelize-cli": "^6.2.0"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"eslint": "^7.21.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"helmet": "^4.4.1",
"husky": "^5.1.2",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"npm-check-updates": "^11.1.9",
"prettier": "^2.2.1",
"sequelize-cli-esm": "^5.0.6"
}
}