-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
201 lines (201 loc) · 5.94 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
{
"name": "gradus-reasonml",
"version": "1.0.0",
"private": true,
"description": "Steps to learning Reason / OCaml",
"author": "Myer Nore <[email protected]>",
"license": "MIT",
"scripts": {
"start": "gatsby develop",
"develop": "gatsby develop",
"bsb:clean": "bsb -clean",
"bsb:watch": "bsb -make-world -w",
"bsb:make": "bsb -make-world",
"build": "gatsby build --prefix-paths",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"lint": "npm run lint:ts && npm run lint:md && npm run lint:js && npm run lint:css",
"lint:ts": "tslint \"./src/**/*.ts\" \"./src/**/*.tsx\"",
"lint:md": "remark .",
"lint:js": "xo",
"lint:css": "stylelint \"src/**/*.css\"",
"lint:scss": "stylelint src/**/*.scss --syntax scss",
"test": "npm run lint && jest",
"test:watch": "jest --watch",
"generate": "plop --plopfile ./generators/plopfile.js",
"graphql-types": "gql-gen --url http://localhost:8000/___graphql --template typescript --out ./src/graphql-types.d.ts",
"precommit": "lint-staged",
"storybook": "start-storybook -p 9001 -c .storybook",
"storybook:build": "build-storybook -c .storybook -o public/docs",
"codeclimate": "codeclimate-test-reporter < coverage/lcov.info",
"lernawatch": "lerna run watch --no-sort --stream --concurrency 999",
"lernabootstrap": "lerna bootstrap",
"lernabuild": "lerna run build"
},
"dependencies": {
"@types/lodash": "^4.14.63",
"@types/react": "16.0.7",
"@types/react-dom": "^15.5.5",
"@types/react-helmet": "5.0.0",
"@types/react-redux": "^5.0.9",
"@types/react-router": "^4.0.14",
"@types/react-router-dom": "^4.0.8",
"babel-eslint": "^7.2.3",
"brace": "^0.10.0",
"change-case": "^3.0.1",
"codeclimate-test-reporter": "^0.4.1",
"codemirror": "^5.32.0",
"gatsby": "latest",
"gatsby-link": "^1.6.28",
"gatsby-plugin-glamor": "latest",
"gatsby-plugin-google-analytics": "latest",
"gatsby-plugin-manifest": "latest",
"gatsby-plugin-offline": "latest",
"gatsby-plugin-sharp": "latest",
"gatsby-plugin-typescript": "^1.4.10",
"gatsby-remark-autolink-headers": "latest",
"gatsby-remark-copy-linked-files": "latest",
"gatsby-remark-images": "latest",
"gatsby-remark-prismjs": "latest",
"gatsby-source-filesystem": "latest",
"gatsby-transformer-json": "latest",
"gatsby-transformer-remark": "latest",
"gatsby-transformer-sharp": "latest",
"graphql-code-generator": "^0.5.2",
"gray-matter": "^2.1.1",
"lodash": "^4.17.4",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-helmet": "5.0.3",
"react-html-parser": "^2.0.1",
"react-redux": "^5.0.6",
"redux-devtools-extension": "^2.13.2",
"semantic-ui-react": "^0.76.0",
"slash": "1.0.0",
"ts-loader": "^2.3.7",
"typescript": "2.5.3"
},
"devDependencies": {
"@storybook/addon-actions": "^3.2.11",
"@storybook/addon-knobs": "^3.2.10",
"@storybook/addon-notes": "^3.2.10",
"@storybook/addon-options": "^3.2.10",
"@storybook/react": "^3.2.11",
"@types/codemirror": "^0.0.51",
"@types/enzyme": "^2.8.9",
"@types/jest": "^19.2.2",
"@types/node": "^7.0.15",
"@types/react-test-renderer": "^15.4.3",
"@types/storybook__addon-actions": "^3.0.1",
"@types/storybook__addon-knobs": "^3.2.0",
"@types/storybook__addon-notes": "^3.0.1",
"@types/storybook__addon-options": "^3.2.0",
"@types/storybook__react": "^3.0.5",
"@types/webpack-env": "^1.13.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"bs-platform": "^2.2.2",
"cross-env": "^5.0.5",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"eslint-config-xo-react": "0.11.1",
"eslint-plugin-react": "6.10.3",
"flat": "^2.0.1",
"fs-extra": "^4.0.2",
"gh-pages": "^1.0.0",
"husky": "0.13.3",
"jest": "19.0.2",
"lerna": "^2.5.1",
"lint-staged": "3.4.0",
"mkdirp": "^0.5.1",
"plop": "^1.7.4",
"raw-loader": "^0.5.1",
"react-addons-test-utils": "^15.5.1",
"react-test-renderer": "16",
"remark-cli": "^3.0.1",
"remark-preset-lint-recommended": "^2.0.0",
"storybook-readme": "^3.0.6",
"stylelint": "^7.10.1",
"stylelint-config-standard": "^16.0.0",
"ts-jest": "19.0.8",
"ts-lint": "4.5.1",
"xo": "^0.18.1"
},
"keywords": [
"gatsby",
"starter"
],
"jest": {
"globals": {
"__LINK_PREFIX__": "",
"__PREFIX_LINKS__": ""
},
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"/node_modules/",
"/templates/",
"/.cache"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"collectCoverage": true,
"coverageReporters": [
"lcov",
"text",
"html"
]
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"tslint --fix",
"git add"
],
"src/**/*.{js,jsx}": [
"xo --fix",
"git add"
],
"*.md": [
"node tools/update-post-date.js",
"git add"
],
"*.css": [
"stylelint"
]
},
"xo": {
"extends": "xo-react/space",
"space": true,
"rules": {
"no-case-declarations": 0,
"default-case": 0
}
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
},
"stylelint": {
"extends": "stylelint-config-standard"
},
"workspaces": [
"plugins/*"
]
}