-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.48 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
{
"name": "common-front-tools",
"version": "0.1.0",
"description": "My collection of front related stuff I use in my projects",
"scripts": {
"storybook": "start-storybook -p 6006 --ci --quiet",
"build-storybook": "build-storybook --quiet",
"eslint": "eslint '**/*.js'",
"stylelint": "stylelint '**/*.{css,scss}'",
"stylelint-prettier-check": "stylelint-config-prettier-check",
"format": "prettier --write '**/*.{html,js,json,md,mdx,scss}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Guirec/common-front-tools.git"
},
"author": "Guirec Lefort <guirec@lefort.family>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Guirec/common-front-tools/issues"
},
"homepage": "https://github.com/Guirec/common-front-tools#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@storybook/addon-docs": "^5.3.18",
"@storybook/addon-viewport": "^5.3.18",
"@storybook/html": "^5.3.18",
"@storybook/preset-scss": "^1.0.2",
"@whitespace/storybook-addon-html": "^1.2.1",
"babel-loader": "^8.1.0",
"css-loader": "^3.5.2",
"node-sass": "^4.13.1",
"prettier": "2.0.4",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"stylelint": "^13.3.2",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-order": "^4.0.0",
"stylelint-scss": "^3.17.0"
},
"dependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0"
}
}