-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.28 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
{
"name": "cart",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "8.11.3",
"npm": "6.4.1"
},
"scripts": {
"start": "nodemon index.js --exec babel-node",
"lint": "eslint src/ test/",
"lint:fix": "eslint --fix src/ test/",
"test": "jest test/unit --verbose --forceExit --collectCoverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/velrino/cart.git"
},
"author": "velrino",
"license": "ISC",
"bugs": {
"url": "https://github.com/velrino/cart/issues"
},
"homepage": "https://github.com/velrino/cart#readme",
"dependencies": {
"@babel/core": "^7.1.2",
"babel-cli": "^6.26.0",
"body-parser": "^1.18.3",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"express": "^4.16.3",
"faker": "^4.1.0",
"fs": "0.0.1-security",
"http-status-codes": "^1.3.0",
"joi": "^13.7.0",
"lodash": "^4.17.11",
"nodemon": "^1.18.4",
"pg": "^7.4.3",
"reflect-metadata": "^0.1.12",
"typeorm": "^0.2.7",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/node": "^7.0.0",
"babel-preset-env": "^1.7.0",
"babel-preset-node8": "^1.2.0",
"babel-register": "^6.26.0",
"eslint-plugin-import": "^2.14.0",
"jest": "^23.6.0"
}
}