-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 804 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 804 Bytes
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
{
"name": "signal-dash",
"version": "1.0.0",
"description": "Lightweight ExperimentOps Lite platform for A/B testing",
"type": "module",
"main": "src/app.js",
"scripts": {
"dev": "nodemon src/app.js",
"start": "node src/app.js",
"db:migrate": "node scripts/migrate.js",
"db:seed": "node scripts/seed.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "eslint src/"
},
"keywords": ["experimentation", "ab-testing", "analytics"],
"author": "",
"license": "MIT",
"dependencies": {
"dotenv": "^16.4.5",
"ejs": "^3.1.9",
"express": "^4.18.2",
"pg": "^8.11.3",
"zod": "^3.22.4"
},
"devDependencies": {
"eslint": "^8.57.0",
"jest": "^29.7.0",
"nodemon": "^3.0.3",
"prettier": "^3.2.5"
}
}