-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 860 Bytes
/
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
{
"private": true,
"name": "one-thousand-eyes",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby clean && gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "yarn run develop",
"serve": "gatsby serve",
"test:build": "yarn run build && yarn run serve",
"setup": "node ./scripts/setup.js",
"blog:setup": "contentful space import --config config.json",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"gatsby": "^2.19.12",
"gatsby-theme-contentful": "^0.1.34",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"contentful-import": "^7.9.12",
"prettier": "^1.19.1"
}
}