-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.29 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
{
"name": "rugal-core",
"version": "1.0.0",
"description": "rugal-core will contain all the e-commerce related logic like order, checkout, cart, shipping, tax, inventory",
"main": "./lib/index.js",
"scripts": {
"dev": "NODE_ENV=development nodemon ./index.ts",
"start": "node ./index.js",
"test": "./node_modules/mocha/bin/_mocha -r ts-node/register test/**/*.test.*",
"code-coverage": "istanbul cover --hook-run-in-context node_modules/mocha/bin/_mocha -- -R spec lib/test/**/*.js"
},
"keywords": [],
"author": "MD. Jahidul Islam",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.0.36",
"@types/lodash": "^4.14.66",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.31",
"chai": "^4.0.0",
"istanbul": "^0.4.5",
"jscs": "^3.0.7",
"mocha": "^3.4.2",
"sinon": "^2.3.2"
},
"dependencies": {
"bluebird": "^3.5.0",
"bunyan": "^1.8.10",
"compression": "^1.6.2",
"cors": "^2.8.4",
"debug": "^2.6.8",
"express": "^4.15.3",
"express-list-endpoints": "^3.0.0",
"intl-messageformat": "^1.3.0",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"nconf": "^0.8.4",
"prettyjson": "^1.2.1",
"rxjs": "^5.4.2",
"ts-node": "^3.0.4",
"typescript": "^2.3.3"
}
}