-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.37 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
{
"name": "news-backend",
"version": "1.5.1",
"description": "It is a simple backend created with MongoDB and express, that provide news.",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir dist",
"dev": "NODE_ENV=development ./node_modules/.bin/nodemon -w src --exec \"./node_modules/.bin/babel-node src --presets '@babel/preset-env'\"",
"test": "export BABEL_ENV=test && export NODE_ENV=test && ./node_modules/.bin/babel-tape-runner ./tests/*.test.js | ./node_modules/.bin/tap-spec",
"start": "node dist/index.js"
},
"author": "Oussama Alouat",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"eslint": "^5.14.1",
"express": "^4.16.4",
"express-validator": "^5.3.1",
"mongoose": "^5.9.7",
"nodemon": "^1.19.4"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-function-sent": "^7.2.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-stage-2": "^7.0.0",
"babel-tape-runner": "^3.0.0",
"supertest": "^3.4.2",
"tap-spec": "^5.0.0",
"tape": "^4.9.2"
}
}