-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.64 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "alpine-project-planner",
"version": "1.0.0",
"description": "An Alpine.js Project Planner application",
"main": "src/main.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint --fix . && prettier --write .",
"test": "jest",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test:e2e": "start-server-and-test dev http://localhost:3000 cy:run",
"test:all": "npm run lint && npm run test && npm run test:e2e"
},
"keywords": [],
"author": "zorkham",
"license": "MIT",
"dependencies": {
"@alpinejs/persist": "^3.14.3",
"alpinejs": "^3.14.3",
"autoprefixer": "^10.4.20",
"phosphor-icons": "^1.4.2",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@badeball/cypress-cucumber-preprocessor": "^21.0.2",
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.3",
"@types/alpinejs": "^3.13.10",
"@types/alpinejs__persist": "^3.13.4",
"@types/cypress": "^1.1.6",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.2",
"@typescript-eslint/parser": "^8.13.0",
"cypress": "^13.15.1",
"eslint": "^9.13.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"import-sort": "^6.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"start-server-and-test": "^2.0.8",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"vite": "^5.4.10"
}
}