-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.97 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.97 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
62
63
64
{
"name": "point-api-docs",
"version": "0.0.1",
"description": "Point API Docs",
"main": "./src/server.js",
"type": "module",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon ./src/server.js",
"test": "cross-env NODE_ENV=test jest",
"test:coverage": "cross-env NODE_ENV=test jest --coverage",
"lint": "eslint ./src/*",
"lint:fix": "eslint ./src/* --fix",
"docs:generate": "openapi bundle docs/v1/index.yml -o ./docs/v1/bundled/openapi.yml",
"docs:build": "npm run docs:generate && redoc-cli build docs/v1/bundled/openapi.yml --output=docs/index.html",
"css:build": "npx tailwindcss -c ./tailwind.config.cjs -i ./src/resources/emails/styles.css -o ./src/resources/emails/styles.min.css",
"css:watch": "css:build --watch"
},
"keywords": [
"node",
"nodejs",
"express",
"expressjs",
"boilerplate",
"api",
"mongodb"
],
"author": "Martien Dermawan Tanama <martien@pointhub.net> (https://www.pointhub.net)",
"license": "ISC",
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.1",
"helmet": "^5.0.2",
"jsonwebtoken": "^8.5.1",
"mime-types": "^2.1.34",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.5"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.15.4",
"@redocly/openapi-cli": "^1.0.0-beta.69",
"@types/jest": "^27.0.1",
"autoprefixer": "^10.3.6",
"babel-plugin-dynamic-import-node": "^2.3.3",
"cross-env": "^7.0.3",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-custom-alias": "^1.2.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"node-mocks-http": "^1.10.1",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"redoc-cli": "^0.13.10",
"supertest": "^6.1.6",
"tailwindcss": "^3.0.23"
},
"imports": {
"#src/*": "./src/*"
}
}