-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.12 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
{
"name": "rcv",
"version": "1.0.0",
"description": "Ranked Choice Voting Calculator App",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:prod": "vite build && cp src/api/config.prod.php dist/api/config.php",
"preview": "vite preview",
"test": "vitest run && ./vendor/bin/phpunit",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:setup-db": "node test/e2e/db.mjs setup",
"test:e2e:teardown-db": "node test/e2e/db.mjs teardown"
},
"dependencies": {
"angular": "^1.5.3",
"angular-animate": "^1.5.3",
"angular-ui-bootstrap": "^2.5.6",
"angular-ui-sortable": "^0.19.0",
"bootstrap": "^3.3.7",
"font-awesome": "^4.7.0",
"jquery": "^2.2.4",
"jquery-ui-dist": "^1.13.2",
"jquery-ui-touch-punch": "^0.2.3",
"lodash": "^4.18.1",
"moment": "^2.30.1",
"ng-pattern-restrict": "^0.2.3"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"angular-mocks": "^1.8.3",
"jsdom": "^29.1.0",
"less": "^4.2.0",
"vite": "^5.0.12",
"vite-plugin-static-copy": "^1.0.0",
"vitest": "^4.1.5"
}
}