-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
103 lines (103 loc) · 2.81 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
103
{
"name": "colette",
"version": "5.6.11",
"license": "MIT",
"dependencies": {
"@accede-web/accordion": "^1.1.0",
"@accede-web/tablist": "^2.0.1",
"a11y-dialog": "^7.0.3",
"blazy": "1.8.2",
"dom4": "2.1.6",
"focus-visible": "^5.0.1",
"fontfaceobserver": "^2.1.0",
"normalize.css": "8.0.1",
"stylus-svg": "^1.2.0"
},
"devDependencies": {
"@20minutes/eslint-config": "^1.2.1",
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.13.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/plugin-transform-strict-mode": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/runtime": "^7.12.1",
"autoprefixer": "^10.3.2",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0",
"colette-kss-builder": "^5.4.1",
"copy-webpack-plugin": "^11.0.0",
"core-js": "^3.8.1",
"css-loader": "^6.2.0",
"cssnano": "^5.0.1",
"docdash": "^1.1.1",
"eslint": "^8.4.1",
"eslint-config-airbnb": "^19.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.19.0",
"html-webpack-plugin": "^5.3.1",
"jsdoc": "^3.6.2",
"kss": "3.0.0",
"kss-webpack-plugin": "^1.5.0",
"mini-css-extract-plugin": "^2.2.0",
"postcss-custom-properties": "github:ryuran/postcss-custom-properties#build",
"postcss-focus-visible": "^6.0.1",
"postcss-loader": "^7.0.0",
"prettier": "^2.4.1",
"stylint": "^2.0.0",
"stylus-loader": "^7.0.0",
"svg-sprite-html-webpack": "^2.3.0",
"webpack": "^5.32.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^4.0.0"
},
"author": "20 Minutes <[email protected]>",
"description": "A CSS and JS starter kit for 20 Minutes web projects",
"keywords": [
"20minutes",
"boilerplate",
"CSS",
"CSS3",
"framework",
"grid",
"helpers",
"HTML",
"HTML5",
"responsive design",
"rwd",
"stylus",
"typography"
],
"browserslist": "IE >= 10, > 0.5%",
"main": "dist/js/colette.min.js",
"files": [
"dist",
"src",
"favicon.ico",
"fontfaces.json"
],
"scripts": {
"start": "webpack serve",
"build": "webpack --env dist",
"test": "npm run lint",
"lint": "npm run lint:js && npm run lint:styl",
"lint:js": "eslint .",
"lint:styl": "stylint ./src/styl",
"docs": "webpack --env page && jsdoc -c ./jsdoc.json"
},
"repository": {
"type": "git",
"url": "https://github.com/20minutes/colette/"
},
"bugs": {
"url": "https://github.com/20minutes/colette/issues"
},
"homepage": "https://developers.20minutes.fr/colette/",
"engines": {
"node": ">=12"
}
}