-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.08 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
{
"name": "store-api",
"publish": false,
"version": "1.0.5",
"description": "Graviton Store's api",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"lint": "eslint --ext .js --ignore-path .gitignore .",
"lint:fix": "eslint --ext .js . --fix",
"test": "gulp && npm run mocha",
"mocha": "mocha --reporter elexus --exit",
"build": "gulp"
},
"keywords": [
"api",
"graviton",
"store"
],
"author": "Marc Espín Sanz <[email protected]>",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-rate-limit": "^5.1.3",
"express-ws": "^4.0.0",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"ws": "^7.4.6"
},
"devDependencies": {
"adm-zip": "^0.4.16",
"axios": "^0.21.1",
"chai": "^4.2.0",
"elexus": "^1.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"gulp": "^4.0.2",
"mocha": "^8.1.1",
"nodemon": "^2.0.3",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"supertest": "^4.0.2",
"yaml": "^1.10.0"
},
"license": "MIT"
}