-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.94 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
92
93
94
95
96
97
98
99
100
101
102
{
"name": "clientkit",
"version": "6.3.0",
"description": "Client kit for websites",
"main": "index.js",
"bin": {
"clientkit": "index.js"
},
"scripts": {
"start": "cd demo && node ../index.js",
"dev": "cd demo && node ../index.js dev",
"build": "rimraf demo/dist/* && cd demo && node ../index.js prod",
"test": "cd test && node ../index.js && cd .. && tap -J -Rmin ./test/*.test.js",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/firstandthird/clientkit.git"
},
"author": "First+Third",
"license": "MIT",
"bugs": {
"url": "https://github.com/firstandthird/clientkit/issues"
},
"homepage": "https://github.com/firstandthird/clientkit#readme",
"devDependencies": {
"rimraf": "^3.0.2",
"tap": "^14.10.8"
},
"dependencies": {
"@babel/core": "^7.10.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/runtime": "^7.10.3",
"async": "^3.2.0",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.1.0",
"babel-preset-minify": "^0.5.1",
"chokidar": "^3.4.0",
"clean-webpack-plugin": "^3.0.0",
"clientkit-styleguide": "^2.0.0",
"confi": "^9.10.1",
"css-loader": "^3.6.0",
"@alaguna/css-mqpacker": "^8.0.1",
"cssnano": "^4.1.10",
"eslint": "^7.3.1",
"eslint-config-firstandthird": "^5.0.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.0",
"extract-css-chunks-webpack-plugin": "^4.7.5",
"merge-options": "^2.0.0",
"normalize.css": "^8.0.1",
"path-exists": "^4.0.0",
"postcss": "^7.0.35",
"postcss-calc": "^7.0.2",
"postcss-color-function": "^4.1.0",
"postcss-custom-properties": "^9.2.0",
"postcss-easings": "^2.0.0",
"@alaguna/postcss-font-magician": "^2.2.1",
"postcss-import": "^12.0.1",
"postcss-inline-svg": "^4.1.0",
"postcss-loader": "^3.0.0",
"postcss-mixins": "^6.2.3",
"postcss-nested": "^4.2.3",
"postcss-preset-env": "^6.7.0",
"postcss-svgo": "^4.0.2",
"postcss-triangle": "^2.0.0",
"require-all": "^3.0.0",
"sort-css-media-queries": "^1.5.2",
"stylelint-config-firstandthird": "^1.1.1",
"stylelint-webpack-plugin": "^2.1.1",
"svg-sprite-loader": "^5.0.0",
"svg-transform-loader": "^2.0.13",
"svgo": "^1.3.2",
"svgo-loader": "^2.2.1",
"taskkit-svg-sprite": "^3.1.1",
"terser-webpack-plugin": "^3.1.0",
"webpack": "^4.44.2",
"webpack-assets-manifest": "^3.1.1",
"webpack-cli": "^3.3.12",
"webpack-dashboard": "^3.2.0",
"webpack-fix-style-only-entries": "^0.5.2"
},
"eslintConfig": {
"extends": "firstandthird"
},
"stylelint": {
"extends": "stylelint-config-firstandthird",
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"define-mixin",
"mixin"
]
}
]
}
}
}