-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.35 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.35 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "webcom-server",
"version": "0.1.0",
"description": "Webcom's backend.",
"main": "build/index.js",
"authors": [
"Dylan Slack <dylanslack@gmail.com> (http://www.dylanslack.me)",
"CJ Brewer <brewercalvinj@gmail.com>"
],
"engines": {
"node": "6.0.0"
},
"scripts": {
"build": "better-npm-run build",
"build:prod": "better-npm-run build:prod",
"clean": "better-npm-run clean",
"cover": "better-npm-run cover",
"start": "better-npm-run start",
"test": "better-npm-run test",
"test:lint": "better-npm-run test:lint",
"test:src": "better-npm-run test:src",
"integration:start": "better-npm-run integration:start",
"migrate:start": "better-npm-run migrate:start"
},
"betterScripts": {
"build": {
"command": "npm run clean && mkdirp build && babel src --out-dir build --source-maps inline"
},
"build:prod": {
"command": "npm run clean && mkdirp build && babel src --out-dir build"
},
"clean": {
"command": "rimraf build coverage .nyc_output"
},
"cover": {
"command": "npm run clean && nyc ava && nyc report --reporter=html && open -a \"Google Chrome\" coverage/index.html"
},
"start": {
"command": "npm run build:prod && node build"
},
"test": {
"command": "npm run test:lint && npm run test:src"
},
"test:lint": {
"command": "eslint src test"
},
"test:src": {
"command": "nyc ava --serial && nyc report --reporter=lcov"
},
"integration:start": {
"command": "npm start",
"env": {
"RETHINKDB_NAME": "staging",
"AUTHENTICATE_TABLE": "user"
}
},
"migrate:start": {
"command": "npm start",
"env": {
"RETHINKDB_NAME": "production",
"AUTHENTICATE_TABLE": "user"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/endfire/webcom-server.git"
},
"bugs": {
"url": "https://github.com/endfire/webcom-server/issues"
},
"homepage": "https://github.com/endfire/webcom-server#readme",
"dependencies": {
"bcrypt": "^0.8.7",
"better-npm-run": "0.0.8",
"emailjs": "^1.0.8",
"excel-export": "^0.5.1",
"http-errors": "^1.5.0",
"jsonwebtoken": "^7.0.1",
"kcors": "^2.1.1",
"koa": "^2.0.0",
"koa-bodyparser": "^3.1.0",
"koa-compose": "^3.1.0",
"koa-router": "^7.0.1",
"lodash": "^4.13.1",
"moment": "^2.15.2",
"qs": "^6.2.1",
"redink": "^1.1.7",
"request": "^2.74.0",
"request-promise": "^4.1.1",
"rethinkdb": "^2.3.2"
},
"devDependencies": {
"ava": "^0.15.2",
"ava-rethinkdb": "^0.1.3",
"babel-cli": "^6.10.1",
"babel-core": "^6.14.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"eslint": "^2.12.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.4.2",
"eslint-plugin-react": "^5.1.1",
"mkdirp": "^0.5.1",
"nyc": "^6.4.4",
"rimraf": "^2.5.2",
"supertest": "^1.2.0",
"supertest-as-promised": "^4.0.0"
},
"ava": {
"files": [
"test"
],
"source": [
"src/**/*.{js}",
"!build/**/*"
],
"require": [
"babel-register"
],
"babel": "inherit"
}
}