forked from nodejs/nodejs.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.1 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
95
96
97
98
99
100
101
102
103
104
{
"name": "nodejs-website",
"description": "Node.js Demo Page",
"version": "0.3.0",
"author": "Adam Miller <ammiller@linkedin.com>",
"private": true,
"dependencies": {
"@emotion/core": "^10.0.7",
"@types/react-helmet": "^5.0.7",
"dotenv": "^8.1.0",
"emotion": "^10.0.7",
"emotion-server": "^10.0.7",
"gatsby": "^2.13.13",
"gatsby-plugin-canonical-urls": "^2.0.10",
"gatsby-plugin-catch-links": "^2.0.9",
"gatsby-plugin-emotion": "^4.0.4",
"gatsby-plugin-manifest": "^2.0.2",
"gatsby-plugin-offline": "^3.0.16",
"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-autolink-headers": "^2.0.15",
"gatsby-remark-images": "^3.0.1",
"gatsby-remark-prismjs": "^3.2.0",
"gatsby-source-filesystem": "^2.0.16",
"gatsby-transformer-remark": "^2.1.5",
"intersection-observer": "^0.7.0",
"prismjs": "^1.15.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-emotion": "^10.0.0",
"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 '**/*.{ts,tsx,js}'",
"format-check": "prettier --check '**/*.{ts,tsx,js}' && yarn md-check",
"jest": "jest",
"update-snapshot": "jest --updateSnapshot",
"test": "yarn format-check && yarn tslint && yarn jest",
"test-watch": "yarn jest --watch",
"test-ci": "yarn test --coverage && codecov",
"tslint": "tslint --project ./tsconfig.json",
"serve": "yarn build && clear && gatsby serve",
"md-check": "remark -qf ."
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.5",
"@types/react-test-renderer": "^16.8.1",
"babel-jest": "^24.1.0",
"babel-preset-gatsby": "^0.2.20",
"codecov": "^3.6.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.1.0",
"prettier": "^1.16.4",
"react-test-renderer": "^16.8.2",
"remark-cli": "^7.0.0",
"remark-frontmatter": "^1.3.2",
"remark-preset-lint-node": "^1.10.1",
"tslint-config-prettier": "^1.15.0",
"tslint-react": "^4.1.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)"
]
}
}