-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.47 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": "life",
"version": "1.10.0",
"description": "Life Game in JS",
"type": "module",
"main": "main.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"format": "prettier . --write",
"release": "dotenv release-it --",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arthaud-proust/dev.arthaud.life.git"
},
"author": "Arthaud Proust",
"license": "ISC",
"bugs": {
"url": "https://github.com/arthaud-proust/dev.arthaud.life/issues"
},
"homepage": "https://github.com/arthaud-proust/dev.arthaud.life#readme",
"dependencies": {
"@headlessui/vue": "^1.7.16",
"@heroicons/vue": "^2.0.18",
"@vueuse/core": "^10.4.1",
"floating-vue": "^2.0.0-beta.24",
"swiper": "^10.3.1",
"vue": "^3.3.4"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@vitejs/plugin-vue": "^4.2.3",
"autoprefixer": "^10.4.15",
"dotenv-cli": "^7.3.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-vue": "^9.17.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"postcss": "^8.4.29",
"prettier": "^3.0.3",
"release-it": "^16.2.0",
"tailwindcss": "^3.3.3",
"ts-jest": "^29.1.1",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vue-tsc": "^1.8.5"
}
}