-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 910 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 910 Bytes
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
{
"name": "eco",
"type": "module",
"version": "1.0.0",
"description": "# app.js: our appliaction entry point # api-routes: application route # config: environment variables # loaders: loaders for startup modules # models: database models # services: business logic # subscribers: async task event handlers # scripts: for long npm scripts",
"main": "app.js",
"scripts": {
"start": "nodemon --watch server --exec node --experimental-modules server/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git"
},
"author": "ApollonPlain",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.8"
},
"devDependencies": {
"eslint": "^7.16.0",
"eslint-plugin-react": "^7.21.5"
}
}