-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.4 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.4 KB
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
{
"name": "banka-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test nyc --reporter=html --reporter=text mocha ./server/test/*.js --require @babel/polyfill --require @babel/register --timeout 150000 --exit",
"server:start": "cross-env NODE_ENV=development nodemon --exec babel-node ./server/index.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"clean": "rm -rf build && mkdir build",
"compile": "./node_modules/.bin/babel ./server -d ./build",
"build": "npm run clean && npm run compile",
"start": "node --require @babel/polyfill build/index.js"
},
"author": "ME",
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.4.4",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"bcryptjs": "^2.4.3",
"cross-env": "^5.2.0",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"make-runnable": "^1.3.6",
"nodemon": "^1.18.11",
"pg": "^7.10.0"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.3",
"@babel/register": "^7.4.0",
"babel-core": "^6.26.3",
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"coveralls": "^3.0.3",
"mocha": "^6.1.3",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^13.3.0"
}
}