forked from Adaptech/les-node-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.26 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
{
"name": "vanilla-cqrs",
"version": "0.0.1",
"description": "Vanilla CQRS project",
"main": "src/app.js",
"dependencies": {
"bcrypt": "^1.0.3",
"body-parser": "^1.17.2",
"cors": "^2.8.4",
"express": "^4.15.3",
"glob": "^7.1.2",
"leveldown": "^2.1.0",
"levelup": "^2.0.1",
"long": "^3.2.0",
"morgan": "^1.8.2",
"node-eventstore-client": "^0.2.0",
"passport": "^0.3.2",
"passport-strategy": "^1.0.0",
"pg-promise": "^6.3.5",
"swagger-ui-express": "^3.0.8",
"uuid": "^3.1.0"
},
"devDependencies": {
"@types/long": "^3.0.32",
"@types/node": "^8.0.57",
"assert": "^1.4.1",
"babel-cli": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.0",
"concurrently": "^3.5.0",
"eslint": "^4.3.0",
"mocha": "^3.4.2"
},
"scripts": {
"clean": "rm -rf dist",
"build": "babel src --out-dir dist --source-maps",
"start": "node $NODE_DEBUG_OPTION -r babel-register src/app local",
"test": "mocha $NODE_DEBUG_OPTION --compilers js:babel-core/register --recursive",
"eslint-fix": "eslint --fix src test"
},
"keywords": [
"vanilla",
"cqrs"
],
"author": "Adaptech Solutions",
"license": "UNLICENSED",
"private": true
}