-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.04 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
{
"name": "micro-service",
"private": true,
"scripts": {
"dev": "lerna exec --no-bail yarn dev",
"test": "nyc --reporter=html --reporter=text mocha --exit --require babel-register ./**/__tests__/*.spec.js",
"bootstrap": "lerna bootstrap",
"coverage": "nyc report --reporter=text-lcov | coveralls && nyc report --reporter=lcov",
"build": "lerna exec yarn build",
"prestart": "yarn build",
"start": "lerna exec --no-bail yarn start"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"coveralls": "^3.0.6",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "2.18.2",
"lerna": "^3.4.3",
"nodemon": "^1.19.2",
"nyc": "^14.1.1"
},
"dependencies": {
"@sentry/node": "5.6.2",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"dotenv": "^8.1.0",
"mocha": "^6.2.0"
}
}