-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.39 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
{
"name": "getting-started",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prestart": "npx babel src --out-dir dist",
"start": "node dist/server",
"start:dev": "nodemon --exec babel-node src/server.js",
"test": "cross-env NODE_ENV=test jest --detectOpenHandles --testTimeout=10000 --watchAll --maxWorkers=1",
"test:coverage": "cross-env NODE_ENV=test jest --detectOpenHandles --testTimeout=10000 --coverage --maxWorkers=1",
"sonar": "node sonar-project.js"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/uploads/"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/basic": "^5.1.1",
"@hapi/hapi": "^18.4.0",
"esm": "^3.2.25",
"mysql": "^2.17.1",
"sqlite": "^3.0.3",
"typeorm": "^0.2.21"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/node": "^7.7.7",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.7",
"@babel/runtime": "^7.7.7",
"cross-env": "^7.0.0",
"dotenv": "^8.2.0",
"jest": "^24.9.0",
"nodemon": "^2.0.2",
"path": "^0.12.7",
"sonarqube-scanner": "^2.5.0",
"supertest": "^4.0.2"
}
}