This repository has been archived by the owner on Apr 2, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.63 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "app",
"license": "UNLICENSED",
"private": true,
"scripts": {
"prepare": "husky install",
"prod": "TAILWIND_MODE=build encore production",
"dev": "TAILWIND_MODE=build encore dev",
"dev-server": "TAILWIND_MODE=watch encore dev-server",
"lint": "yarn run lint:js && yarn run lint:css",
"lint:js": "eslint . --ext .js,.jsx,.ts,.tsx,.vue --fix",
"lint:css": "stylelint 'assets/**/*.scss' --fix",
"check-types": "tsc --noEmit",
"test:unit": "jest",
"cypress": "TZ=UTC cypress"
},
"engines": {
"node": "14.x",
"yarn": "1.x"
},
"browserslist": [
"> 0.5%",
"not ie 11",
"not op_mini all"
],
"devDependencies": {
"@babel/eslint-parser": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.14.2",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-typescript": "^7.13.0",
"@kocal/eslint-config-generator": "^2.0.3",
"@kocal/eslint-config-generator-plugin-typescript": "^2.1.0",
"@kocal/eslint-config-generator-plugin-vue": "^2.0.2",
"@symfony/webpack-encore": "^1.3.0",
"@types/jest": "^26.0.22",
"@vue/compiler-sfc": "^3.1.0",
"@vue/test-utils": "^2.0.0-rc.6",
"babel-jest": "^27.1.0",
"chai-subset": "^1.6.0",
"chai-subset-jest-diff": "^1.0.0",
"core-js": "^3.10.0",
"cypress": "^7.0.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-plugin-chai-friendly": "^0.7.1",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-mocha": "^9.0.0",
"husky": "^6.0.0",
"jest": "^27.0.3",
"jest-serializer-vue": "^2.0.2",
"lint-staged": "^11.0.0",
"postcss": "^8.2.9",
"postcss-loader": "^5.2.0",
"prettier": "^2.2.1",
"sass": "^1.38.2",
"sass-loader": "^11.1.1",
"stimulus": "^2.0.0",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-prettier": "^1.2.0",
"stylelint-scss": "^3.19.0",
"ts-jest": "^27.0.2",
"typescript": "^4.2.3",
"vue-jest": "vuejs/vue-jest#refs/pull/343/head",
"vue-loader": "^16.2.0",
"webpack-bundle-analyzer": "^4.4.0"
},
"dependencies": {
"@sentry/browser": "^6.5.1",
"@symfony/stimulus-bridge": "^2.1.0",
"@tailwindcss/forms": "^0.3.2",
"@types/bazinga-translator": "^3.0.0",
"bazinga-translator": "^4.0.1",
"date-fns": "^2.19.0",
"foundation-emails": "^2.3.1",
"intl-messageformat": "^9.6.18",
"symfony-ts-router": "Kocal/symfony-ts-router#tokens-boolean-dist",
"tailwindcss": "^2.2.7",
"vue": "^3.1.0"
}
}