-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.38 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
{
"name": "tripsorter",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:Mohit21GoJs/tripsorter.git",
"author": "Mohit Yadav <mohit.yadav@xebia.com>",
"engines": {
"node": ">=10.x"
},
"license": "MIT",
"scripts": {
"start": "node ./server/app.js",
"build": "rm -rf dist/ && babel . --ignore node_modules,src/client --out-dir dist --copy-files ",
"start-with-nodemon": "nodemon --exec babel-node --ignore='node_modules' -- ./src/server/app.js",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-es2015": "^7.0.0-beta.53",
"babel-eslint": "^10.0.1",
"babel-plugin-module-resolver": "^3.2.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-plugin-import": "^2.17.2",
"jest": "^24.7.1",
"nodemon": "^1.18.11"
},
"dependencies": {
"@babel/runtime": "^7.4.4",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"config": "^3.1.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"helmet": "^3.17.0",
"lodash": "^4.17.11",
"response-time": "^2.3.2"
}
}