forked from dhamith93/sqlite-online
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 905 Bytes
/
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
{
"name": "sqlite-online",
"version": "1.0.0",
"description": "Simple web frontend for sqlite",
"main": "app.js",
"scripts": {
"start": "cross-env NODE_ENV=production node app",
"dev": "cross-env NODE_ENV=development nodemon app",
"e2e:chrome": "cypress run --browser chrome",
"test:ci": "run-p --race start e2e:chrome"
},
"author": "Dhamith Hewamullage",
"license": "MIT",
"dependencies": {
"csurf": "^1.11.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-handlebars": "^5.3.2",
"express-session": "^1.17.2",
"find-remove": "^3.1.0",
"method-override": "^3.0.0",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"npm-run-all": "^4.1.5",
"sqlite": "^4.0.23",
"sqlite3": "^5.0.2"
},
"devDependencies": {
"@types/express": "^4.17.12",
"cross-env": "^7.0.3",
"cypress": "^8.3.1",
"nodemon": "^2.0.7"
}
}