-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.05 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "api",
"version": "0.0.0",
"description": "pixore api",
"main": "index.js",
"homepage": "http://pixelzstudio.com",
"scripts": {
"prebuild": "rimraf build && mkdir ./build",
"build": "cp -r src/ ./build && cp package.json ./build/ && cp yarn.lock ./build/",
"server": "nodemon ./src/index.js",
"start:simple": "node ./src/index.js",
"start": "env-cmd ./.env npm run server",
"lint": "eslint ./src",
"test:mocha": "nyc mocha ./src/**/*.spec.js",
"test:main": "npm run lint && npm run test:mocha",
"test": "env-cmd ./.env.test npm run test:main"
},
"keywords": [
"pixel",
"art"
],
"repository": {
"type": "git",
"url": "https://github.com/pixore/api"
},
"author": "Jose Albizures <[email protected]>",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.27.0",
"bluebird": "^3.4.6",
"body-parser": "^1.15.1",
"co": "^4.6.0",
"connect-mongo": "^1.3.2",
"cookie-parser": "^1.4.3",
"env-cmd": "^5.1.0",
"express": "^4.13.3",
"express-session": "^1.14.2",
"joi": "^10.0.6",
"joi-objectid": "^2.0.0",
"jsonwebtoken": "^7.2.1",
"lodash": "^4.17.2",
"lodash.defaults": "^4.2.0",
"lodash.omit": "^4.5.0",
"lodash.pick": "^4.4.0",
"mongodb": "^2.2.16",
"mongoose": "^4.7.3",
"morgan": "^1.8.1",
"multer": "^1.2.1",
"passport": "^0.3.2",
"passport-twitter": "^1.0.4",
"pngjs": "^3.0.0",
"querymen": "^2.1.1"
},
"devDependencies": {
"chai": "^3.5.0",
"css-loader": "^0.26.1",
"eslint": "^3.12.2",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.1",
"eslint-plugin-standard": "^2.0.1",
"get-port": "^2.1.0",
"mocha": "^3.2.0",
"nock": "^9.0.13",
"nodemon": "^1.11.0",
"nyc": "^10.2.0",
"rimraf": "^2.5.4",
"supertest": "^2.0.1"
},
"nyc": {
"check-coverage": true,
"lines": 99,
"statements": 99,
"functions": 99,
"branches": 99,
"reporter": [
"html"
],
"exclude": [
"src/config/passport.js"
]
}
}