-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.42 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
{
"private": true,
"name": "ampreactstorybook",
"version": "2.1.0",
"description": "⚡⚛ AMP HTML + React + Storybook — The most trendy website boilerplate possible.",
"main": "",
"scripts": {
"gatsby": "gatsby develop",
"dev": "next",
"tsc": "tsc --watch",
"storybook": "start-storybook -p 9001 -s ./static -c .storybook",
"build": "next build",
"start": "next start",
"lint": "eslint -c ./package.json ./pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/svdoever/ampreactwithstorybook.git"
},
"keywords": [
"amp",
"react",
"storybook",
"trendy"
],
"author": "Serge van den Oever (serge@macaw.nl) - based on work by Dylan Frankland <dylan@frankland.io> (http://dylan.frankland.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/svdoever/ampreactwithstorybook.git"
},
"homepage": "https://github.com/svdoever/ampreactwithstorybook.git#readme",
"devDependencies": {
"@storybook/addon-actions": "^3.2.13",
"@storybook/addon-knobs": "^3.2.13",
"@storybook/addon-notes": "^3.2.13",
"@storybook/addon-options": "^3.2.13",
"@storybook/react": "^3.2.13",
"@types/react": "^16.0.18",
"@types/react-test-renderer": "^16.0.0",
"@types/storybook__addon-actions": "^3.0.1",
"@types/storybook__addon-knobs": "^3.2.1",
"@types/storybook__addon-notes": "^3.0.1",
"@types/storybook__addon-options": "^3.2.0",
"@types/storybook__react": "^3.0.5",
"@types/webpack-env": "^1.13.2",
"babel-eslint": "^8.0.1",
"babel-plugin-styled-components": "^1.2.1",
"babel-preset-stage-0": "^6.24.1",
"concurrently": "^3.5.0",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"raw-loader": "^0.5.1",
"ts-loader": "^3.0.5",
"typescript": "^2.5.3"
},
"dependencies": {
"@types/node": "^8.0.50",
"next": "^4.1.3",
"react": "^16.0.0",
"react-amphtml": "^2.2.2",
"react-dom": "^16.0.0",
"react-helmet": "^5.2.0",
"storybook-readme": "^3.1.1",
"styled-components": "^2.2.2",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-merge": "^4.1.1"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb",
"env": {
"browser": true
},
"rules": {
"react/jsx-filename-extension": "off"
}
}
}