-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.4 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": "multi-n-back-api",
"version": "1.0.0",
"description": "back end server for multi-back-app",
"main": "index.js",
"scripts": {
"deploy": "now --public && now alias",
"lint": "eslint --ext '.mjs, .js' .",
"pretest": "npm run lint",
"test": "mocha --require @std/esm --reporter nyan server/test{/**,}/*.test.{mjs,js}",
"test:watch": "nodemon --ext '.mjs, .js' --experimental-modules --exec 'npm run test'",
"start": "node --experimental-modules server",
"start:watch": "nodemon --ext '.mjs, .js' --experimental-modules server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eidetikos/multi-n-back-api.git"
},
"author": "Zachary Lichens <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/eidetikos/multi-n-back-api/issues"
},
"homepage": "https://github.com/eidetikos/multi-n-back-api#readme",
"devDependencies": {
"@std/esm": "^0.18.0",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"eslint": "^4.13.0",
"mocha": "^4.0.1",
"nodemon": "^1.12.5"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"bluebird": "^3.5.1",
"body-parser": "^1.15.2",
"cors": "^2.8.4",
"express": "^4.16.2",
"jsonwebtoken-promisified": "^1.0.3",
"mongoose": "^4.13.6",
"morgan": "^1.9.0",
"now": "^8.5.4"
},
"now": {
"alias": "multi-n-back-api.now.sh",
"dotenv": true
}
}