-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·76 lines (76 loc) · 2.59 KB
/
package.json
File metadata and controls
executable file
·76 lines (76 loc) · 2.59 KB
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
{
"name": "code-challenge-rails",
"private": true,
"scripts": {
"lint": "yarn lint:scss & yarn eslint",
"lint:scss": "stylelint \"app/vue/**/*.vue\" --syntax scss & stylelint \"app/vue/**/*.scss\"",
"eslint": "eslint --ext .js,.ts,.vue app/vue",
"lokalise-sync": "node scripts/lokalise-sync.js",
"stylelint": "stylelint '**/*.vue' '**/*.scss' --syntax scss",
"test": "vue-cli-service test:unit"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@fullhuman/postcss-purgecss": "^3.0.0",
"@rails/webpacker": "5.4.3",
"@tailwindcss/custom-forms": "^0.2.1",
"@types/lodash": "^4.14.165",
"@types/node": "^14.14.12",
"autoprefixer": "^9",
"axios": "^0.21.0",
"babel-eslint": "^10.1.0",
"babel-preset-typescript-vue": "^1.1.1",
"core-js": "^3.8.1",
"date-fns": "^2.16.1",
"es6-object-assign": "^1.1.0",
"es6-promise": "^4.2.8",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-vue": "^7.2.0",
"fork-ts-checker-webpack-plugin": "^5.2.1",
"lodash": "^4.17.20",
"path": "^0.12.7",
"postcss": "^7",
"regenerator-runtime": "^0.13.7",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"tailwindcss-transitions": "^2.2.0",
"ts-loader": "^8.0.11",
"turbolinks": "^5.2.0",
"typescript": "^4.1.2",
"vue": "^2.6.12",
"vue-axios": "^3.2.0",
"vue-inline-svg": "^2.0.0",
"vue-loader": "^15.9.5",
"vue-router": "^3.4.9",
"vue-screen": "^1.5.3",
"vue-svg-inline-loader": "^1.5.1",
"vue-template-compiler": "^2.6.12"
},
"version": "0.1.0",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-destructuring": "^7.12.1",
"@babel/plugin-transform-regenerator": "^7.14.5",
"@babel/preset-env": "^7.15.8",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"@vue/cli-plugin-unit-jest": "^4.5.9",
"@vue/cli-service": "^4.5.9",
"babel-loader": "^8.2.2",
"babel-preset-vue": "^2.0.2",
"file-loader": "^6.2.0",
"stylelint": "^13.8.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-processor-html": "^1.0.0",
"ts-jest": "^26.4.4",
"vue-jest": "^3.0.7",
"webpack-dev-server": "^3.11.0"
}
}