-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.88 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
57
58
59
60
61
62
63
64
{
"name": "starter-api",
"version": "1.0.0",
"description": "",
"author": {
"name": "Laurent Menu",
"email": "hello@lmenu.fr",
"url" : "https://www.lmenu.fr"
},
"main": "index.js",
"scripts": {
"start": "pm2-dev start ./src/config/dev.json",
"seed": "BABEL_DISABLE_CACHE=1 ./node_modules/sequelize-cli/lib/sequelize --config=./src/config/config.js --seeders-path=./src/seeders db:seed:all",
"lint": "eslint src/",
"test": "BABEL_DISABLE_CACHE=1 NODE_ENV=test mocha --compilers js:babel-core/register --timeout 10000",
"migrate": "BABEL_DISABLE_CACHE=1 ./node_modules/sequelize-cli/lib/sequelize --config=./src/config/config.js --migrations-path=./src/migrations db:migrate"
},
"repository": {
"type": "git",
"url": "git@git.anagram.paris:WiBuild/api.git"
},
"author": "Clint Agency",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-preset-es2015": "^6.24.0",
"chai": "^4.1.0",
"chai-http": "^3.0.0",
"eslint": "^3.18.0",
"mocha": "^3.4.2"
},
"dependencies": {
"bcrypt": "^1.0.2",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.17.1",
"cors": "^2.8.3",
"express": "^4.15.2",
"express-validation": "^1.0.2",
"fs": "0.0.1-security",
"generate-password": "^1.3.0",
"i18next": "^8.4.3",
"i18next-express-middleware": "^1.0.5",
"i18next-node-fs-backend": "^1.0.0",
"joi": "^10.4.1",
"lodash": "^4.17.4",
"md5": "^2.2.1",
"mkdirp": "^0.5.1",
"moment": "^2.18.1",
"morgan": "^1.8.1",
"multer": "^1.3.0",
"mysql2": "^1.4.2",
"nodemailer": "^4.1.3",
"path": "^0.12.7",
"rand-token": "^0.3.0",
"request": "^2.81.0",
"rotating-file-stream": "^1.2.2",
"sequelize": "^4.8.2",
"sequelize-cli": "^3.0.0-2",
"shared-examples-for": "^0.1.3",
"slugify": "^1.2.1",
"umzug": "^2.0.1",
"winston": "^2.3.1"
}
}