forked from IrinaSing/Readeer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.75 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
55
56
57
58
59
{
"name": "final-project-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production PORT=3000 STATIC_DIR=client DATA_DIR=data node ./api/index.js",
"dev:api": "nodemon index.js",
"document:client": "node ./dev-scripts/document client",
"document:api": "node ./dev-scripts/document api",
"document": "node ./dev-scripts/document client api",
"lint:js": "eslint --max-warnings=0 --ext=.js --format=codeframe --fix",
"lint": "npm run lint:js",
"format": "prettier --write ./",
"dev": "vite --mode development",
"build": "vite build",
"serve": "vite preview"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"bootstrap-icons": "^1.6.1",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.1.3",
"morgan": "^1.10.0",
"npm": "^8.1.3",
"objectid": "^3.2.1",
"request": "^2.88.2",
"rfs": "^9.0.6",
"tv4": "^1.3.0",
"vite": "^2.5.10"
},
"devDependencies": {
"dependency-cruiser": "^10.0.6",
"esbuild": "^0.12.18",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-folders": "^1.0.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^32.3.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^3.4.0",
"graphviz-cli": "^1.0.0",
"html-validate": "^5.2.0",
"jest": "^25.1.0",
"jsdoc-to-markdown": "^7.0.1",
"nodemon": "^2.0.15",
"prettier": "^2.3.2",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"supertest": "^4.0.2"
}
}