-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.24 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
{
"name": "pine-beetle-automation",
"version": "3.0.0",
"description": "",
"author": "",
"main": "src/index.js",
"scripts": {
"lint": "eslint src --cache",
"dev": "nodemon src/index.js --exec \"yarn lint && babel-node\"",
"start": "babel-node src/index.js",
"clean": "rm -rf dist/; rm -rf uploads/*",
"build": "yarn clean; babel src -d dist --copy-files --no-copy-ignored",
"prod": "yarn build; NODE_ENV=production node dist/index.js"
},
"license": "ISC",
"engines": {
"node": ">=16 <19"
},
"nodemonConfig": {
"signal": "SIGHUP",
"delay": "1500"
},
"dependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/eslint-parser": "^7.21.3",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.11.5",
"axios": "^0.21.2",
"compose-function": "^3.0.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.16.3",
"fast-csv": "^4.3.2",
"json2csv": "^5.0.3",
"jwt-simple": "^0.5.6",
"mongoose": "^6.4.6",
"morgan": "^1.9.0",
"multer": "^1.4.2",
"numeral": "^2.0.6"
},
"devDependencies": {
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.22.0",
"nodemon": "^2.0.4"
}
}