-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.75 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
{
"name": "temper-frontend-engineer-assignment",
"description": "This project is a solution to the Temper Frontend Engineer Assignment. It is a Vue.js application that implements a sortable post list with additional features as outlined in the assignment.",
"version": "1.0.0",
"author": "Dmitrii Baranov <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/orimay/temper-frontend-engineer-assignment.git"
},
"bugs": {
"url": "https://github.com/orimay/temper-frontend-engineer-assignment/issues"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"test:unit": "vitest --dom",
"test:e2e": "start-test 'npm run build && npm run preview' http-get://localhost:3030 'cypress run'",
"test:e2e:open": "start-test dev http-get://localhost:3030 'cypress open'"
},
"dependencies": {
"@iconify/vue": "^4.1.1",
"pinia": "^2.1.7",
"vue": "^3.3.4"
},
"devDependencies": {
"@iconify/icons-octicon": "^1.2.46",
"@pinia/testing": "^0.1.3",
"@total-typescript/ts-reset": "^0.5.1",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/test-utils": "^2.4.1",
"autoprefixer": "^10.4.16",
"cypress": "^13.5.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-vue": "^9.18.1",
"happy-dom": "^12.10.3",
"postcss": "^8.4.31",
"sass": "^1.69.5",
"start-server-and-test": "^2.0.2",
"tailwindcss": "^3.3.5",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vitest": "^0.34.6",
"vue-tsc": "^1.8.5"
}
}