-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.85 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "barebone-webapp",
"version": "1.0.0",
"description": "Barebone for a modern app with Gatsby, React, PostCSS and Typescript",
"scripts": {
"build": "node_modules/.bin/babel-node --presets @babel/preset-typescript --extensions '.ts,.tsx' node_modules/.bin/gatsby build",
"clean": "rm -rf .cache factory public",
"lint": "tslint --project tsconfig.json --config tslint.json --type-check",
"start": "node_modules/.bin/babel-node --presets @babel/preset-typescript --extensions '.ts,.tsx' node_modules/.bin/gatsby develop",
"test": "jest"
},
"jest": {
"bail": true,
"resetModules": true,
"testEnvironment": "node",
"testMatch": [
"<rootDir>/specs/**/*.spec.ts"
],
"moduleFileExtensions": [
"ts",
"json"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/alvis/barebone-webapp.git"
},
"keywords": [
"gatsby",
"boilerplate",
"typescript"
],
"author": "Alvis HT Tang <[email protected]>",
"contributors": [
"Alvis HT Tang <[email protected]>"
],
"maintainers": [
"Alvis HT Tang <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/alvis/barebone-webapp/issues"
},
"homepage": "https://github.com/alvis/barebone-webap#readme",
"dependencies": {
"apollo-cache-inmemory": "^1.1.0",
"apollo-client": "^2.2.0",
"apollo-link-http": "^1.5.0",
"auth0-js": "^9.5.0",
"crypto-js": "^3.1.0",
"fetch-ponyfill": "^4.1.0",
"graphql": "^0.11.0",
"graphql-tag": "^2.6.0",
"react": "^16.3.0",
"react-apollo": "^2.0.0",
"react-dom": "^16.2.0",
"react-helmet": "^5.1.0",
"react-redux": "^5.0.7",
"react-router-redux": "^5.0.0",
"react-scroll": "^1.7.0",
"reduce-reducers": "^0.2.0",
"redux": "^4.0.0",
"redux-logic": "^0.12.0",
"redux-persist": "^5.9.0",
"redux-persist-transform-encrypt": "^2.0.0",
"semantic-ui-react": "^0.75.0",
"store": "^2.0.0",
"typesafe-actions": "^2.0.0-1"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.46",
"@babel/node": "^7.0.0-beta.46",
"@babel/plugin-transform-modules-commonjs": "^7.0.0-beta.46",
"@babel/plugin-transform-typescript": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"@babel/preset-typescript": "^7.0.0-beta.46",
"@types/auth0-js": "^8.11.0",
"@types/crypto-js": "^3.1.0",
"@types/jest": "^21.1.0",
"@types/node": "^8.5.0",
"@types/react": "^16.3.0",
"@types/react-dom": "^16.0.0",
"@types/react-helmet": "^5.0.0",
"@types/react-redux": "^5.0.18",
"@types/react-router-redux": "^5.0.0",
"@types/react-scroll": "^1.5.0",
"@types/reduce-reducers": "^0.2.0",
"@types/redux-persist": "^4.3.0",
"@types/redux-persist-transform-encrypt": "^1.0.0",
"@types/storejs": "^2.0.0",
"babel-plugin-module-resolver": "^3.1.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"gatsby": "^1.9.0",
"gatsby-link": "^1.6.0",
"gatsby-plugin-catch-links": "^1.0.0",
"gatsby-plugin-nprogress": "^1.0.0",
"gatsby-plugin-offline": "^1.0.0",
"gatsby-plugin-purify-css": "^2.2.0",
"gatsby-plugin-react-helmet": "^1.0.0",
"gatsby-plugin-sass": "^1.0.0",
"gatsby-plugin-sitemap": "^1.2.0",
"gatsby-plugin-typescript": "^1.4.0",
"gatsby-source-filesystem": "^1.5.0",
"gatsby-transformer-yaml": "^1.5.0",
"jest": "^21.1.0",
"prettier": "^1.9.0",
"semantic-ui": "^2.2.0",
"ts-jest": "^21.2.0",
"tslint": "^5.7.0",
"tslint-config-prettier": "^1.5.0",
"typescript": "^2.8.0"
}
}