-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
67 lines (67 loc) · 1.93 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
{
"name": "xcs-translator",
"version": "1.0.0",
"description": "XCS Translator is a web app to convert EXCEL file to JSON and SQL so that you can quickly and easily import data from your sheets to your database.",
"main": "build/index.js",
"scripts": {
"start": "tsc && cross-env NODE_ENV=production pm2 start build/index.js --name \"web-server\" -i max",
"dev": "tsnd --respawn src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write \"src/**/*.{js,ts,json,css,scss}\"",
"clear-archive": "node scripts/clearArchive.js",
"monit": "pm2 monit",
"list": "pm2 list",
"stop": "pm2 stop web-server",
"reload": "pm2 reload web-server",
"delete": "pm2 delete web-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyperjumptech/xcs-translator.git"
},
"bugs": {
"url": "https://github.com/hyperjumptech/xcs-translator/issues"
},
"homepage": "https://github.com/hyperjumptech/xcs-translator#readme",
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/multer": "^1.4.5",
"@types/node": "^14.14.28",
"@types/parse-numeric-range": "0.0.1",
"@types/uuid": "^8.3.0",
"cross-env": "^7.0.3",
"husky": "^5.0.9",
"lint-staged": "^10.5.4",
"pm2": "4.5.4",
"prettier": "^2.2.1",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.5"
},
"dependencies": {
"express": "4.17.1",
"express-winston": "4.0.5",
"joi": "17.4.0",
"mariadb": "2.5.3",
"multer": "1.4.2",
"uuid": "8.3.2",
"validate.js": "0.13.1",
"winston": "3.3.3",
"xlsx": "0.16.9"
},
"prettier": {
"arrowParens": "avoid",
"tabWidth": 2,
"trailingComma": "all",
"semi": false,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,ts,json,css,scss}": "prettier --write"
}
}