-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.93 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
{
"name": "wamp-microservice-node",
"version": "1.0.0",
"description": "Micro-service Node boilerplate",
"main": "src/index.js",
"scripts": {
"clean-install": "rm -rf node_modules/ && npm install",
"build": "docker-compose up",
"start": "node src/index.js",
"test": "NODE_ENV=test nyc ava --verbose",
"test:watch": "NODE_ENV=test ava --watch --verbose"
},
"ava": {
"failFast": false,
"source": [
"src/**/*"
],
"files": [
"src/**/*.test.js"
],
"require": [
"babel-polyfill"
]
},
"keywords": [
"crossbario",
"wamp",
"api",
"mongoose",
"websocket",
"microservice",
"node"
],
"author": "Yan Nunes",
"license": "MIT",
"dependencies": {
"wampy": "^6.2.0",
"lodash": "^4.17.10",
"loglevel": "^1.6.1",
"mongoose": "^5.1.1",
"nodemon": "^1.17.4",
"websocket": "^1.0.26",
"to-slug-case": "^1.0.0",
"connutils": "git+https://github.com/ConnApp/connutils.git#master",
"connwamp-crud": "git+https://github.com/ConnApp/connwamp-crud.git#master"
},
"devDependencies": {
"ava": "^0.25.0",
"nyc": "^11.8.0",
"sinon": "^5.0.7",
"eslint": "^4.19.1",
"prettier": "^1.12.1",
"proxyquire": "^2.0.1",
"babel-eslint": "^8.2.3",
"prettier-eslint": "^8.8.1",
"babel-polyfill": "^6.26.0",
"eslint-plugin-node": "^6.0.1",
"mongodb-memory-server": "^1.7.4",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-standard": "^3.1.0",
"connwamp": "git+https://github.com/ConnApp/connwamp.git#master"
}
}