-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"name": "ddd-node-ftw",
"version": "0.1.0",
"description": "Supporting repository for the talk on DDD implementation feedback with Node",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"eventstore": "^1.12.3",
"lightstream-node-utils": "^2.1.0",
"lodash": "^4.17.4",
"node-uuid": "^1.4.8",
"redis": "^2.7.1",
"redux-actions": "^2.0.3",
"restify": "^4.3.0",
"rx": "^4.1.0",
"tcomb": "^3.2.21"
},
"devDependencies": {
"chai": "^4.0.2",
"mocha": "^3.4.2",
"supervisor": "^0.12.0"
},
"scripts": {
"test": "mocha test/ --recursive --reporter landing",
"test:watch": "npm run test -- -w",
"start": "node app/server.js",
"start:watch": "supervisor -w app/ app/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rehia/ddd-node-ftw.git"
},
"keywords": [
"ddd",
"node",
"example"
],
"author": "Jérôme Avoustin",
"license": "MIT",
"bugs": {
"url": "https://github.com/rehia/ddd-node-ftw/issues"
},
"homepage": "https://github.com/rehia/ddd-node-ftw#readme"
}