forked from AUEB-BALab/blockly_unix
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.31 KB
/
package.json
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
{
"name": "blockly_unix",
"version": "1.0.0",
"description": "This is a development environment based on **Blockly** where users can easily construct data processing pipelines by visually plugging together processing blocks. The pipeline will be implemented underneath using Unix tools. ![Picture2](https://github.com/vcipi/blockly_unix/assets/108274884/8bb6be00-a88b-4145-bb61-8be70e9b5c58)",
"main": "main.js",
"scripts": {
"format-check": "prettier --check .",
"prettier-fix": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"devStart": "nodemon server.js"
},
"keywords": [],
"author": "",
"devDependencies": {
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"ejs": "^3.1.10",
"express": "^4.21.0",
"express-flash": "^0.0.2",
"express-session": "^1.18.0",
"express-validator": "^7.1.0",
"hbs": "^4.2.0",
"jsonwebtoken": "^9.0.2",
"method-override": "^3.0.0",
"mysql": "^2.18.1",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"prettier": "^3.3.3"
},
"license": "ISC",
"dependencies": {
"@blockly/toolbox-search": "^2.0.8",
"dotenv": "^16.4.5",
"passport-google-oauth20": "^2.0.0",
"serve-favicon": "^2.5.0",
"sqlite3": "^5.1.7"
}
}