-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"private": true,
"name": "javascript-starter",
"version": "1.0.1",
"author": "ProxityStudios",
"license": "MIT",
"homepage": "https://github.com/ProxityStudios/javascript-starter/blob/main/README.md",
"engines": {
"node": ">=14.0.0"
},
"bugs": {
"url": "https://github.com/ProxityStudios/javascript-starter/issues"
},
"scripts": {
"start": "node src/main.js",
"dev": "nodemon --inspect src/main.js -- --env development",
"fix": "eslint . --fix"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-formatter-pretty": "^6.0.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^50.0.1",
"nodemon": "^3.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.2",
"rimraf": "^5.0.5"
},
"dependencies": {
"dotenv": "^16.3.1",
"tslog": "^4.9.2",
"yargs": "^17.7.2"
}
}