forked from nodejs/nodejs.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.64 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
{
"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-canonical-urls": "^2.0.10",
"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-sitemap": "^2.0.5",
"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.8.0",
"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": "jest",
"commitmsg": "commitlint --edit $GIT_PARAMS"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/preset-typescript": "^7.3.3",
"@commitlint/cli": "^7.3.2",
"@commitlint/config-conventional": "^7.3.1",
"@types/jest": "^24.0.5",
"@types/react-test-renderer": "^16.8.1",
"babel-jest": "^24.1.0",
"babel-preset-gatsby": "^0.1.7",
"husky": "^1.3.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.1.0",
"prettier": "^1.14.2",
"react-test-renderer": "^16.8.2",
"tslint-config-prettier": "^1.15.0",
"tslint-react": "^3.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/nodejs/nodejs.dev"
},
"jest": {
"transform": {
"^.+\\.(ts|tsx|js)$": "<rootDir>/test-preprocessor.js"
},
"moduleNameMapper": {
".+\\.(css|styl|less|sass|scss)$": "identity-obj-proxy",
".+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/test/__mocks__/fileMock.js"
},
"testPathIgnorePatterns": [
"node_modules",
".cache"
],
"transformIgnorePatterns": [
"node_modules/(?!(gatsby)/)"
],
"globals": {
"__PATH_PREFIX__": ""
},
"setupFiles": [
"<rootDir>/test-setup.js"
],
"collectCoverageFrom": [
"src/**/**.(ts|tsx|js)"
]
}
}