-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
{
"name": "slack-invite-server",
"version": "1.0.0",
"description": "a simple server to invite people for slack",
"main": "index.js",
"scripts": {
"linter": "eslint src",
"build": "babel src -s -D -d dist",
"postinstall": "npm run build",
"start": "node dist",
"start-babel": "babel-node src",
"predev": "npm run linter",
"dev": "nodemon --exec npm run start-babel",
"test": ""
},
"author": "Iago Laguna<[email protected]>",
"license": "WTFPL",
"dependencies": {
"@koa/cors": "^2.2.1",
"@types/koa__cors": "^2.2.2",
"axios": "^0.18.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"dotenv": "^6.0.0",
"http-status": "^1.2.0",
"koa": "^2.5.1",
"koa-body": "^4.0.4",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"qs": "^6.5.2",
"winston": "^3.0.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"nodemon": "^1.17.5"
}
}