forked from nodejs/nodejs.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.66 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
{
"name": "nodejs-website",
"description": "Node.js Demo Page",
"version": "0.3.0",
"author": "Adam Miller <[email protected]>",
"private": true,
"dependencies": {
"@types/react-helmet": "^5.0.7",
"dotenv": "^6.0.0",
"emotion": "^9.2.12",
"emotion-server": "^9.2.12",
"gatsby": "^2.0.0",
"gatsby-plugin-catch-links": "^2.0.9",
"gatsby-plugin-emotion": "^2.0.5",
"gatsby-plugin-manifest": "^2.0.2",
"gatsby-plugin-offline": "^2.0.5",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-sharp": "^2.0.17",
"gatsby-plugin-typescript": "^2.0.0",
"gatsby-remark-images": "^3.0.1",
"gatsby-remark-prismjs": "^3.2.0",
"gatsby-source-contentful": "^2.0.1",
"gatsby-source-filesystem": "^2.0.16",
"gatsby-transformer-remark": "^2.1.5",
"prismjs": "^1.15.0",
"react": "^16.8.0",
"react-dom": "^16.5.1",
"react-emotion": "^9.2.12",
"react-helmet": "^5.2.0",
"tslint": "^5.11.0",
"typescript": "^3.1.1"
},
"keywords": [
"gatsby",
"node.js"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"build-ci": "gatsby build --prefix-paths",
"start": "gatsby develop",
"format": "prettier --write '**/*.tsx'",
"test": "echo \"Error: no test specified\" && exit 1",
"commitmsg": "commitlint --edit $GIT_PARAMS"
},
"devDependencies": {
"@commitlint/cli": "^7.3.2",
"@commitlint/config-conventional": "^7.3.1",
"husky": "^1.3.1",
"prettier": "^1.14.2",
"tslint-config-prettier": "^1.15.0",
"tslint-react": "^3.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
}
}