-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.15 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.15 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
50
51
{
"name": "@selldone/clone-sheet",
"version": "1.0.10",
"publishConfig": {
"access": "public"
},
"description": "A web-based database exploration and visualization tool",
"main": "index.js",
"scripts": {
"setup": "node setup.js",
"start": "node index.js",
"dev": "nodemon index.js",
"test": "echo \"No tests specified\" && exit 0",
"build": "echo \"No build step required\" && exit 0",
"lint": "eslint .",
"migrate": "npx sequelize-cli db:migrate",
"create-db": "node create-database.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/selldone/clone-sheet.git"
},
"keywords": [
"database",
"explorer",
"visualization",
"mysql",
"mariadb",
"sequelize",
"data-explorer"
],
"author": "pajuhaan",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"axios": "^1.8.3",
"dotenv": "^16.4.7",
"ejs": "^3.1.10",
"express": "^4.21.2",
"mariadb": "^3.4.0",
"mysql2": "^3.13.0",
"sequelize": "^6.37.6",
"tailwindcss": "^4.0.14"
},
"devDependencies": {
"eslint": "^8.56.0",
"nodemon": "^3.0.3"
}
}