-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.72 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
50
51
52
53
54
55
56
57
58
{
"name": "hawkeye",
"version": "0.1.0",
"description": "A web application that allows users view rtsp and rtmp streams for ip cameras",
"main": "index.js",
"private": true,
"repository": {
"type": "git",
"url": ""
},
"dependencies": {
"agenda": "^1.0.3",
"axios": "^0.16.2",
"bcrypt": "^4.0.1",
"bcryptjs": "^2.4.3",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"compression": "^1.7.4",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"express": "^4.15.5",
"helmet": "^3.8.1",
"http-status-codes": "^1.4.0",
"jsonwebtoken": "^8.0.1",
"moment": "^2.18.1",
"mongodb": "^2.2.31",
"mongoose": "^5.9.18",
"morgan": "^1.8.2",
"path": "^0.12.7",
"signale": "^1.4.0",
"underscore": "^1.8.3"
},
"scripts": {
"apidoc": "npm-run-all -p watch-apidoc start-apidoc",
"build-apidoc": "apidoc -i ./api/modules/ -o ./apidoc",
"build-client": "cd ./client && yarn run build",
"client": "cd ./client && yarn run client",
"server": "nodemon -L index.js",
"start-apidoc": "live-server --port=5000 --quiet ./apidoc",
"start-dev-docker": "docker-compose up --build --remove-orphans",
"start-dev": "npm-run-all -p apidoc client server",
"start": "node index.js",
"test-server": "mocha --opts ./mocha.opts --exit ./api/modules/*",
"test-client": "cd client && yarn test",
"test": "yarn run test-server && yarn run test-client",
"watch-apidoc": "nodemon -L --exec yarn run build-apidoc"
},
"devDependencies": {
"apidoc": "^0.17.6",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"live-server": "^1.2.0",
"mocha": "6",
"mongodb-memory-server": "^6.6.1",
"nodemon": "^1.12.1",
"npm-run-all": "^4.1.2"
}
}