-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.99 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
{
"name": "gatsby-starter-kit",
"description": "Gatsby starter kit",
"version": "1.0.0",
"private": true,
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "ts-node --fast -r babel-core/register node_modules/gatsby/dist/gatsby-cli.js build",
"develop": "ts-node --fast -r babel-core/register node_modules/gatsby/dist/gatsby-cli.js develop",
"test": "jest --env=jsdom",
"test:watch": "jest --watch --env=jsdom"
},
"jest": {
"testEnvironment": "jsdom",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "\\.test\\.tsx?$",
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"dependencies": {
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"gatsby": "^1.9.17",
"gatsby-link": "^1.6.15",
"gatsby-plugin-react-helmet": "^1.0.5",
"gatsby-plugin-styled-components": "^1.0.5",
"gatsby-plugin-typescript": "^1.4.7",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"normalizr": "^3.2.3",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.2.0",
"styled-components": "^2.1.2",
"svg-react-loader": "^0.4.5",
"ts-node": "^3.3.0",
"typescript": "^2.5.2"
},
"devDependencies": {
"@types/jest": "^20.0.8",
"@types/lodash": "^4.14.74",
"@types/marked": "^0.3.0",
"@types/node": "^8.0.25",
"@types/react": "^16.0.5",
"@types/react-dom": "^15.5.4",
"@types/react-helmet": "^5.0.3",
"@types/react-redux": "^5.0.6",
"@types/react-router-dom": "^4.0.7",
"@types/redux-logger": "^3.0.2",
"@types/uuid": "^3.4.1",
"jest": "^20.0.4",
"prettier": "^1.6.1",
"svg-icon": "^0.8.2",
"ts-jest": "^20.0.13",
"tslint": "^5.7.0",
"tslint-react": "^3.2.0"
}
}