-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 1 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
{
"name": "projectcreamapi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha ./testing/test.js --recursive --exit --timeout 15000 --require esm",
"start": "nodemon -r esm index.js",
"install-steamcmd": "node -r esm -e 'import steamcmd from \"steamcmd\"; steamcmd.install();'",
"lint": "eslint index.js src/"
},
"author": "jiornojiovanni, arciducazagaria",
"license": "ISC",
"dependencies": {
"archiver": "^5.1.0",
"axios": "^0.21.1",
"chai": "^4.2.0",
"dot": "^1.1.3",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-rate-limit": "^5.2.3",
"jsdom": "^16.4.0",
"mocha": "^8.2.1",
"mongoose": "^5.11.7",
"pug": "^3.0.1",
"steamcmd": "git+https://github.com/pierluigizagaria/node-steamcmd.git",
"tmp": "^0.2.1"
},
"devDependencies": {
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"nodemon": "^2.0.6"
}
}