-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.24 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
{
"name": "contra",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "nuxt",
"build": "nuxt build && nuxt generate",
"start": "nuxt start",
"generate": "nuxt generate",
"lint:prettier": "prettier --check .",
"lint": "yarn lint:prettier",
"lintfix": "prettier --write --list-different ."
},
"dependencies": {
"@nuxtjs/axios": "^5.13.6",
"@popperjs/core": "^2.11.8",
"consola": "^3.2.3",
"core-js": "^3.35.1",
"nuxt": "^2.17.3",
"vue": "^2.7.16",
"vue-calendar-heatmap": "^0.8.4",
"vue-server-renderer": "^2.7.16",
"vue-template-compiler": "^2.7.16",
"webpack": "^4.47.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-class-properties": "^7.25.9",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.26.6",
"@babel/plugin-transform-optional-chaining": "^7.25.9",
"@babel/plugin-transform-private-methods": "^7.25.9",
"@babel/plugin-transform-private-property-in-object": "^7.25.9",
"@nuxtjs/tailwindcss": "^6.11.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8.4.33",
"postcss-nesting": "^12.0.2",
"prettier": "^3.2.4"
}
}