-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.5 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
{
"name": "btrshop-cloud",
"version": "0.1.0",
"description": "Cloud for btrshop",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js",
"test": "istanbul cover node_modules/.bin/_mocha test/*.js",
"coveralls": "cat coverage/lcov.info | node_modules/.bin/coveralls",
"eslint": "eslint . --ext .js",
"eslintfix": "eslint . --ext .js --fix"
},
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Oupsla/BtrShop-cloud.git"
},
"license": "ISC",
"author": "Nicolas Delperdange <[email protected]>",
"dependencies": {
"barcoder": "^2.0.1",
"bluebird": "^3.4.1",
"body-parser": "^1.15.2",
"coveralls": "^2.11.15",
"express": "^4.14.0",
"express-validator": "^2.21.0",
"helmet": "^2.1.2",
"lodash": "^4.15.0",
"mathjs": "^3.8.1",
"mocha-lcov-reporter": "^1.2.0",
"mongoose": "^4.11.0",
"morgan": "^1.7.0",
"request": "^2.79.0",
"request-promise": "^4.1.1",
"swagger-node-express": "^2.1.3",
"underscore": "^1.8.3"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^6.0.0",
"istanbul": "^1.1.0-alpha.1",
"jshint": "^2.9.3",
"mocha": "^3.1.2",
"nodemon": "^1.9.2",
"should": "^11.1.1",
"sinon": "^1.17.6",
"supertest": "^2.0.0"
}
}