-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.29 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
49
{
"name": "trello",
"version": "1.0.0",
"description": "edu project",
"main": "index.js",
"scripts": {
"start": "set NODE_ENV=production&& node index.js",
"client": "npm start --prefix client",
"client:build": "npm run build --prefix client",
"client:install": "npm install --prefix client",
"build": "npm run client:install && npm run client:build",
"server": "nodemon index.js",
"dev": "concurrently \"npm run client\" \"npm run server\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/6heLL66/trello-clone.git"
},
"keywords": [
"trello",
"clone",
"education"
],
"author": "Nikita Semenchuk",
"license": "ISC",
"bugs": {
"url": "https://github.com/6heLL66/trello-clone/issues"
},
"homepage": "https://github.com/6heLL66/trello-clone#readme",
"dependencies": {
"@hapi/boom": "^9.1.2",
"@hapi/hapi": "^20.1.2",
"bcrypt": "^5.0.1",
"config": "^3.3.6",
"dotenv": "^8.2.0",
"inert": "^5.1.3",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.2.5",
"nanoid": "^3.1.23",
"sequelize": "^6.6.2"
},
"devDependencies": {
"concurrently": "^6.0.2",
"nodemon": "^2.0.7",
"prettier": "^2.2.1"
}
}