-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.16 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
{
"name": "dad-jokes",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"test": "yarn test:unit && yarn test:e2e",
"test:unit": "jest --config=jest.config.js tests/unit",
"test:e2e": "start-server-and-test dev http-get://localhost:3000 e2e:javascript",
"e2e:javascript": "cypress run --config-file cypress.json"
},
"dependencies": {
"axios": "^0.21.1",
"vue": "^3.0.5"
},
"devDependencies": {
"@babel/runtime": "^7.14.6",
"@types/jest": "^26.0.23",
"@vitejs/plugin-vue": "^1.2.2",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-unit-jest": "~4.5.0",
"@vue/compiler-sfc": "^3.0.5",
"@vue/test-utils": "^2.0.0-rc.6",
"autoprefixer": "^9",
"cypress": "^7.4.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-vue": "^7.10.0",
"flush-promises": "^1.0.2",
"jest": "^26.6.3",
"postcss": "^7",
"prettier": "^2.3.0",
"start-server-and-test": "^1.12.3",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"typescript": "~3.9.3",
"vite": "^2.3.4",
"vue-jest": "^5.0.0-alpha.10"
}
}