-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.78 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
{
"name": "design-system-starter",
"version": "1.0.0",
"description": "A design system starter using Storybook and Gatsby.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"docs": "cd documentation && npm run develop",
"docs:clean": "cd documentation && npm run clean",
"storybook": "cd storybook && npm run storybook -p 6006 --ci",
"start": "concurrently \"npm run docs\" \"npm run storybook\"",
"build-storybook": "cd storybook && build-storybook",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adekunleoduye/design-system-starter.git"
},
"keywords": [
"design system"
],
"author": "Adekunle Oduye",
"license": "ISC",
"bugs": {
"url": "https://github.com/adekunleoduye/design-system-starter/issues"
},
"homepage": "https://github.com/adekunleoduye/design-system-starter#readme",
"devDependencies": {
"babel-eslint": "^9.0.0",
"classnames": "^2.2.6",
"concurrently": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^4.3.0",
"eslint-config-wesbos": "0.0.19",
"eslint-plugin-html": "^5.0.5",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^1.7.0",
"prettier": "^1.19.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"css-loader": "^3.5.3",
"node-sass": "^4.14.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-icons": "^3.10.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"svg-icon": "^0.8.2"
}
}