This repository has been archived by the owner on Nov 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.51 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
{
"name": "@storycopter/storycopter-gatsby-starter",
"version": "0.0.23",
"main": "lib/index.js",
"license": "BSD-3-Clause",
"dependencies": {
"@material-ui/core": "4.9.14",
"@material-ui/icons": "4.9.1",
"@material-ui/styles": "4.9.14",
"@reach/router": "1.3.3",
"@types/react": "16.9.35",
"gatsby": "2.21.30",
"gatsby-image": "2.4.3",
"gatsby-link": "2.4.2",
"gatsby-plugin-material-ui": "2.1.8",
"gatsby-plugin-react-helmet": "3.3.1",
"gatsby-plugin-sharp": "2.6.3",
"gatsby-plugin-styled-components": "3.3.1",
"gatsby-plugin-transition-link": "1.18.0",
"gatsby-react-router-scroll": "3.0.0",
"gatsby-source-filesystem": "2.3.3",
"gatsby-transformer-json": "2.4.2",
"gatsby-transformer-sharp": "2.5.2",
"gsap": "3.2.6",
"lodash": "4.17.15",
"material-ui-popup-state": "1.5.4",
"polished": "3.6.3",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-helmet": "6.0.0",
"react-is": "16.13.1",
"react-player": "2.0.1",
"react-slick": "0.26.1",
"styled-components": "5.1.0"
},
"peerDependencies": {
"@material-ui/core": "4.9.14",
"@material-ui/icons": "4.9.1",
"gatsby": "2.21.30",
"polished": "3.6.3",
"react": "16.13.1",
"react-dom": "16.13.1",
"styled-components": "5.1.0"
},
"devDependencies": {
"@babel/core": "7.9.6",
"@hot-loader/react-dom": "16.13.0",
"acorn": "6.4.1",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"babel-plugin-styled-components": "1.10.7",
"eslint": "7.0.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.20.0",
"gatsby-cli": "2.12.21",
"nodemon": "2.0.3",
"prettier": "2.0.5",
"prettier-eslint": "9.0.1",
"prettier-stylelint": "0.4.2",
"pretty-quick": "2.0.1",
"stylelint": "13.3.3",
"stylelint-config-prettier": "8.0.1",
"stylelint-prettier": "1.1.2",
"typescript": "3.9.2",
"webpack": "4.43.0",
"webpack-cli": "3.3.11"
},
"scripts": {
"build:lib": "webpack -p --config ./lib.webpack.config.js",
"build:site": "gatsby build",
"clean": "yarn clean:site && yarn clean:lib",
"clean:lib": "rm -rf ./lib",
"clean:site": "gatsby clean && npx rimraf **/node_modules/",
"deploy:site": "gatsby build && netlify deploy --dir=public --prod",
"publish:lib": "yarn publish --access=public",
"start": "yarn start:site",
"start:lib": "nodemon --watch src --exec yarn build:lib",
"start:site": "gatsby develop"
}
}