-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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": "lerna-monorepo-starter",
"description": "Lerna monorepo starter",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"author": "Andrico Karoulla <[email protected]>",
"dependencies": {
"gatsby": "^1.9.247",
"gatsby-link": "^1.6.40",
"gatsby-plugin-react-helmet": "^2.0.10",
"gatsby-plugin-react-next": "^1.0.11",
"gatsby-source-filesystem": "^1.5.39",
"gatsby-transformer-json": "^1.0.20",
"react": "16.0.0",
"react-helmet": "^5.2.0",
"serve": "^10.0.0",
"styled-components": "^3.3.3"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"test": "jest test --config ./json-config.json",
"run:blog": "cd packages/blog && yarn develop",
"run:shop": "cd packages/shop && yarn develop",
"run:all": "npm-run-all --parallel run:blog run:shop"
},
"devDependencies": {
"@babel/preset-env": "^7.0.0-rc.1",
"@babel/preset-react": "^7.0.0-rc.1",
"babel-jest": "^23.4.2",
"enzyme": "^3.4.1",
"enzyme-adapter-react-16": "^1.2.0",
"jest": "^24.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
}
}