-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 921 Bytes
/
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": "servemywallets",
"description": "The API to dispatch AllMyWallets sync orders",
"repository": "https://github.com/allmywallets/servemywallets.git",
"author": "Quentin de Longraye",
"license": "MIT",
"main": "src/",
"scripts": {
"start": "node src/",
"test": "ava",
"lint": "eslint src test",
"lint:fix": "eslint --fix src test"
},
"dependencies": {
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"eslint": "^4.18.2",
"express": "^4.16.2",
"sequelize": "^5.15.1",
"sqlite3": "^3.1.13",
"web-push": "^3.2.5"
},
"devDependencies": {
"ava": "^0.24.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"supertest": "^3.0.0"
},
"engines": {
"node": "9.x"
}
}