forked from timJFrame/sei-project-3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 736 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 736 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
{
"name": "sei-project-3",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:timJFrame/sei-project-3.git",
"author": "timframe <t.f.retouching@gmail.com>",
"license": "MIT",
"type": "module",
"dependencies": {
"bcrypt": "^5.0.0",
"concurrently": "^5.3.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"faker": "^5.1.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.10",
"mongoose-unique-validator": "^2.0.3",
"nodemon": "^2.0.7"
},
"scripts": {
"dev": "npx nodemon",
"seed": "node db/seeds.js",
"start": "node index.js",
"build": "cd client && yarn && yarn build",
"dev-fullstack": "concurrently \"yarn dev\" \"cd client && yarn start\""
}
}