-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
executable file
·61 lines (61 loc) · 1.76 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
{
"name": "specificity-visualizer",
"repository": "isellsoap/specificity-visualizer",
"author": "Francesco Schwarz",
"description": "A visual way to analyze the specificity of selectors in CSS.",
"homepage": "https://isellsoap.github.io/specificity-visualizer/",
"bugs": {
"url": "https://github.com/isellsoap/specificity-visualizer/issues"
},
"license": "MIT",
"engines": {
"node": "10",
"yarn": ">= 1.9.4"
},
"browserslist": [
"IE >= 10"
],
"scripts": {
"build": "yarn && cross-env NODE_ENV=production webpack",
"start": "yarn && cross-env NODE_ENV=development webpack-dev-server"
},
"dependencies": {
"highcharts": "6.1.2",
"javascript-natural-sort": "0.7.1",
"lodash": "4.17.10",
"normalize.css": "8.0.0",
"parsel-js": "^1.0.1",
"webfontloader": "1.6.28"
},
"devDependencies": {
"@babel/core": "7.0.0",
"@babel/preset-env": "7.0.0",
"@types/webpack": "4.4.11",
"autoprefixer": "9.1.5",
"babel-loader": "8.0.2",
"clean-webpack-plugin": "0.1.19",
"cross-env": "^5.2.0",
"css-loader": "1.0.0",
"html-webpack-plugin": "3.2.0",
"mini-css-extract-plugin": "0.4.2",
"postcss": "^8.2.8",
"postcss-custom-media": "^8.0.0",
"postcss-custom-properties": "^11.0.0",
"postcss-hexrgba": "^2.0.1",
"postcss-import": "^14.0.0",
"postcss-loader": "4.x",
"postcss-mixins": "^7.0.3",
"prettier": "^2.2.1",
"style-loader": "0.23.0",
"stylelint": "9.5.0",
"stylelint-config-standard": "18.2.0",
"stylelint-order": "1.0.0",
"stylelint-webpack-plugin": "0.10.5",
"terser-webpack-plugin": "^4.x",
"ts-node": "7.0.1",
"typescript": "3.0.3",
"webpack": "4.17.2",
"webpack-cli": "3.1.0",
"webpack-dev-server": "3.1.8"
}
}