-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.38 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.38 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
{
"name": "electroapp",
"version": "1.0.0",
"description": "",
"default": "index.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon --delay 400ms server.js",
"watch:js": "parcel watch ./static/clientSide/index.js --out-dir ./static/clientSide --out-file bundle.js",
"build:js": "parcel build ./static/clientSide/index.js --out-dir ./static/clientSide --out-file bundle.js"
},
"author": "FM",
"license": "ISC",
"devDependencies": {
"@parcel/transformer-image": "^2.0.0-rc.0",
"eslint": "^8.24.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"ndb": "^1.1.5",
"nodemon": "^2.0.20",
"parcel": "^2.0.0-rc.0",
"parcel-bundler": "^1.12.5",
"prettier": "^2.7.1"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"axios": "^1.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.1",
"cookie-parser": "^1.4.6",
"core-js": "^2.6.5",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"html-to-text": "^8.2.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.6.4",
"morgan": "^1.10.0",
"pug": "^3.0.2",
"slugify": "^1.6.5",
"validator": "^13.7.0"
}
}