forked from Joystream/joystream-org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.37 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
104
105
106
107
108
{
"name": "joystream",
"private": true,
"version": "0.1.0",
"dependencies": {
"@joystream/types": "^0.14.0",
"@polkadot/api": "1.26.1",
"@storybook/addon-backgrounds": "^5.1.9",
"@storybook/addon-centered": "^5.1.9",
"@storybook/addon-info": "^5.1.9",
"@storybook/addon-viewport": "^5.1.9",
"@svgr/webpack": "^4.3.0",
"axios": "^0.21.1",
"babel-jest": "^24.8.0",
"babel-preset-gatsby": "^0.5.5",
"classnames": "^2.2.6",
"css-loader": "^3.0.0",
"eslint-plugin-import": "^2.18.2",
"gatsby": "^2.31.1",
"gatsby-image": "^2.2.1",
"gatsby-plugin-anchor-links": "^1.1.1",
"gatsby-plugin-google-analytics": "^2.1.0",
"gatsby-plugin-hotjar": "^1.0.1",
"gatsby-plugin-manifest": "^2.2.0",
"gatsby-plugin-offline": "^2.2.0",
"gatsby-plugin-polyfill-io": "^1.1.0",
"gatsby-plugin-react-helmet": "^3.1.0",
"gatsby-plugin-sass": "^2.1.0",
"gatsby-plugin-sharp": "^2.2.1",
"gatsby-plugin-stylelint": "^3.2.0",
"gatsby-plugin-svgr": "^2.0.2",
"gatsby-source-filesystem": "^2.1.0",
"gatsby-transformer-sharp": "^2.2.0",
"get-value": "^3.0.1",
"identity-obj-proxy": "^3.0.0",
"intersection-observer": "^0.7.0",
"jest": "^24.8.0",
"jsdom": "^15.1.1",
"node-sass": "^4.12.0",
"openpgp": "^4.10.10",
"pre-commit": "^1.2.2",
"prismjs": "^1.21.0",
"prop-types": "^15.7.2",
"pure-react-carousel": "^1.27.1",
"rc-slider": "^8.7.1",
"react": "^16.8.6",
"react-anchor-link-smooth-scroll": "^1.0.12",
"react-countdown-now": "^2.1.1",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-intersection-observer": "^8.23.0",
"react-loader-spinner": "^3.1.14",
"react-markdown": "^4.1.0",
"react-media": "^1.10.0",
"react-modal": "^3.8.2",
"react-player": "^2.6.0",
"react-plx": "^1.3.13",
"react-spring": "^8.0.27",
"sass-loader": "^7.1.0",
"smoothscroll-polyfill": "^0.4.4",
"stickybits": "^3.6.6",
"style-loader": "^0.23.1",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-order": "^3.0.0",
"stylelint-scss": "^3.8.0",
"stylelint-webpack-plugin": "^0.10.5",
"url-loader": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@storybook/addon-actions": "^5.1.9",
"@storybook/addon-links": "^5.1.9",
"@storybook/addon-storysource": "^5.1.9",
"@storybook/addons": "^5.1.9",
"@storybook/react": "^5.1.9",
"babel-loader": "^8.0.6",
"babel-plugin-prismjs": "^2.0.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.3.5",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"lint": "eslint --ignore-path .gitignore . --ext js --ext jsx",
"lint:fix": "yarn lint --fix",
"stylelint": "stylelint 'src/**/*.scss'",
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "yarn develop",
"serve": "gatsby serve",
"test": "jest",
"fetch-assets-data": "node ./src/scripts/fetchAssetsData",
"storybook": "NODE_ENV=production start-storybook -p 6006",
"build-storybook": "gatsby build && NODE_ENV=production build-storybook -c .storybook --loglevel error --quiet"
},
"pre-commit": [
"lint",
"stylelint",
"test"
]
}