-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.54 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
{
"name": "deta_hello_world",
"version": "0.0.1",
"description": "deta hello world",
"main": "app.js",
"scripts": {
"build_docs": "apidoc -i src/api -o src/static_files/docs -t src/templates/apidocs_template/template/ --private true",
"dev": "npm run build_docs; nodemon ./src/app.js",
"start": "npm run build_docs; node --trace-warnings ./src/app.js --name deta_hello_world",
"test": "cross-env NODE_ENV=test nyc mocha --timeout 15000 src/**/*.test.js --exit"
},
"author": "Hashir Ahmad",
"license": "ISC",
"dependencies": {
"apidoc": "^0.17.7",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-cors": "0.0.3",
"handlebars": "^4.7.7",
"helmet": "^4.6.0",
"markdown-it": "^12.2.0",
"moment": "^2.29.1",
"mongodb": "^4.1.0",
"node-cache": "^5.1.2"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/register": "^7.13.16",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-webpack-aliases": "^1.1.3",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-literal-blacklist": "^0.1.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"esm": "^3.2.25",
"mocha": "^5.2.0",
"nyc": "^15.1.0",
"prettier": "^2.3.0",
"prettier-eslint": "^12.0.0"
},
"engines": {
"node": "^14.6.0"
}
}