-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.83 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
{
"name": "musicsync",
"version": "0.2.0",
"private": true,
"scripts": {
"start-mon": "./node_modules/.bin/nodemon ./bin/www",
"start": "node bin/www",
"test": "./node_modules/.bin/nyc ava --timeout=3000",
"clean-test": "docker-compose -f docker-compose.test.yml up --build --abort-on-container-exit",
"lint": "./node_modules/.bin/eslint app.js ./routes/*.js",
"development": "docker-compose -f docker-compose.development.yml up --build",
"production": "docker-compose -f docker-compose.production.yml up --build",
"coverage": "./node_modules/.bin/nyc report --reporter=text-lcov > coverage.lcov && codecov",
"docker-build": "docker build --rm -t registry.maxemiliang.me/projects/musicsync:latest .",
"docker-push": "docker push registry.maxemiliang.me/projects/musicsync:latest",
"preversion": "npm run test",
"version": "",
"postversion": "git push && git push --tags",
"generate-docs": "node_modules/.bin/jsdoc -c jsdoc.json -R README.md"
},
"dependencies": {
"aplayer": "^1.3.10",
"binaryjs": "^0.2.1",
"bloomcss": "^0.3.2",
"body-parser": "~1.18.2",
"cfonts": "0.0.13",
"connect-flash": "^0.1.1",
"cookie-parser": "~1.3.5",
"debug": "~2.6.9",
"eslint": "^4.18.2",
"express": "~4.16.0",
"express-session": "^1.13.0",
"find-remove": "^0.2.10",
"fs-plus": "^2.8.1",
"morgan": "~1.9.1",
"hbs": "~4.0.2",
"multer": "^1.1.0",
"mysql": "^2.10.2",
"nodemon": "^1.17.5",
"options": "^0.0.6",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"password-hash": "^1.2.2",
"password-hash-and-salt": "^0.1.3",
"require-sql": "^1.0.0",
"serve-favicon": "~2.4.5"
},
"devDependencies": {
"ava": "1.0.0-beta.4",
"codecov": "^3.0.2",
"docdash": "^0.4.0",
"jsdoc": "^3.5.5",
"nyc": "^11.8.0"
}
}