forked from boldak/database_basics_template
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.09 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.09 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
{
"name": "projects-lab",
"version": "1.0.0",
"description": "Projects Lab - platform which allow you easily manage your projects.",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"test-db": "node ./tests/db",
"build-db": "node ./tests/build",
"test-app": "node ./tests/app"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmitriy-uvin/operating_project_system.git"
},
"keywords": [
"kanban",
"scrum",
"agile",
"projects",
"managing"
],
"author": "Dmitriy Uvin",
"license": "ISC",
"bugs": {
"url": "https://github.com/dmitriy-uvin/operating_project_system/issues"
},
"homepage": "https://github.com/dmitriy-uvin/operating_project_system#readme",
"dependencies": {
"chalk": "^4.1.0",
"cli-table3": "^0.6.0",
"fs": "^0.0.1-security",
"lodash-node": "^3.10.2",
"mysql2": "^2.2.5",
"path": "^0.12.7",
"sequelize": "^6.3.5"
}
}