generated from kitce/viennetta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.7 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
85
86
87
88
89
90
91
{
"name": "block9me",
"description": "Simple blocky identicon generator",
"version": "1.0.0",
"license": "MIT",
"engines": {
"node": ">=12",
"yarn": ">=1.9"
},
"scripts": {
"build": "gulp clean && gulp build",
"dev": "gulp dev",
"lint:js": "eslint \"**/*.js\"",
"lint:ts": "eslint \"**/*.ts\"",
"lint:scss": "stylelint \"**/*.scss\"",
"lint": "yarn lint:js && yarn lint:ts && yarn lint:scss",
"deploy": "gh-pages -d dist"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@types/gulp": "^4.0.6",
"@types/html-webpack-plugin": "^3.2.1",
"@types/lodash": "^4.14.149",
"@types/mini-css-extract-plugin": "^0.8.0",
"@types/node": "^12.12.21",
"@types/node-sass": "^4.11.0",
"@types/randomcolor": "^0.5.4",
"@types/webpack": "^4.41.0",
"@types/webpack-dev-server": "^3.9.0",
"@types/webpack-env": "^1.15.1",
"@types/webpack-merge": "^4.1.5",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"babel-loader": "^8.0.5",
"bootstrap": "^4.4.1",
"css-loader": "^3.4.0",
"del": "^5.1.0",
"eslint": "^6.8.0",
"gh-pages": "^2.2.0",
"gulp": "^4.0.0",
"gulp-clean-css": "^4.0.0",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.0.2",
"gulp-typed-css-modules": "^2.0.1",
"gulp-uglify": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.1.0",
"lodash": "^4.17.15",
"material-colors": "^1.2.6",
"mini-css-extract-plugin": "^0.8.2",
"node-sass": "^4.11.0",
"normalize.css": "^8.0.1",
"postcss": "^7.0.25",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.5.0",
"randomcolor": "^0.5.4",
"sass-loader": "^8.0.0",
"simple-lipsum": "^0.1.5",
"style-loader": "^1.0.2",
"stylelint": "^12.0.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-recommended-scss": "^4.1.0",
"stylelint-scss": "^3.13.0",
"tailwindcss": "^1.1.3",
"tailwindcss-export-config": "^2.0.2",
"ts-loader": "^6.2.1",
"ts-node": "^8.5.4",
"typed-css-modules": "^0.6.3",
"typescript": "^3.7.3",
"uglify-js": "^3.7.2",
"vue": "^2.6.4",
"vue-class-component": "^6.3.2",
"vue-loader": "^15.6.2",
"vue-property-decorator": "^8.4.1",
"vue-template-compiler": "^2.6.4",
"webpack": "^4.41.4",
"webpack-dev-server": "^3.10.0",
"webpack-merge": "^4.2.1"
}
}