-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.57 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
50
51
52
53
54
{
"name": "autonomous-node-projects-manager",
"version": "0.9.1",
"description": "Easy manager with automation for your node projects!",
"main": "index.js",
"nodemonConfig": {
"env": {
"NODE_ENV": "dev"
},
"watch": [
"src"
],
"exec": "babel-node src/app.js"
},
"scripts": {
"start": "npm run genRoutesSchemas && NODE_ENV=prod babel-node src/app.js",
"dev": "npm run genRoutesSchemas && nodemon",
"genRoutesSchemas": "node src/documentation/generateRoutesSchemas.js",
"genJSONschema": "json-schema-generator ./example.json example.schema.json",
"lint": "eslint src/**/*.js"
},
"author": "Daniel Goliszewski",
"license": "MIT",
"dependencies": {
"@autonomous-node-projects/tools": "^1.2.0",
"@babel/core": "^7.14.0",
"@babel/node": "^7.13.13",
"@openapi-contrib/json-schema-to-openapi-schema": "^1.3.0",
"babel-plugin-module-resolver": "^4.1.0",
"cors": "^2.8.5",
"directory-tree": "^2.2.9",
"dotenv": "^8.2.0",
"enjoi": "^9.0.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"express-formidable": "^1.2.0",
"express-openapi": "^8.0.0",
"joi": "^17.4.0",
"mongodb": "^3.6.6",
"mongoose": "^5.12.5",
"swagger-ui-express": "^4.1.6",
"tar-fs": "^2.1.1",
"uuid": "^8.3.2",
"web-push": "^3.4.4"
},
"devDependencies": {
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"json-schema-generator": "^2.0.6",
"nodemon": "^2.0.7"
}
}