-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.66 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.66 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "np_services",
"version": "1.0.0",
"description": "",
"main": "./src/server.js",
"dependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/polyfill": "^7.10.1",
"@babel/node": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"pg": "^8.2.1",
"rimraf": "^3.0.2",
"sequelize": "^5.21.13",
"swagger-jsdoc": "^4.0.0",
"swagger-ui-express": "^4.1.4",
"uuid": "^8.1.0"
},
"devDependencies": {
"babel-jest": "^26.0.1",
"jest": "^26.0.1",
"nodemon": "^2.0.4",
"prettier": "2.0.5",
"rimraf": "^3.0.2",
"sequelize-cli": "^5.5.1",
"superagent": "^5.2.2",
"supertest": "^4.0.2"
},
"jest": {
"testEnvironment": "node",
"verbose": true,
"moduleFileExtensions": [
"js",
"json",
"node"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"collectCoverage": true,
"testMatch": [
"./**/*.spec.js"
]
},
"scripts": {
"test": "jest",
"build": "babel ./src --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
"start": "npm run build && node dist/server.js",
"dev": "nodemon --exec babel-node src/server.js"
},
"author": "",
"license": "ISC"
}