-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·75 lines (75 loc) · 1.99 KB
/
package.json
File metadata and controls
executable file
·75 lines (75 loc) · 1.99 KB
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
{
"name": "gitwatch",
"version": "0.1.0",
"private": true,
"author": {
"name": "Cody Morrison"
},
"repository": {
"type": "git",
"url": "https://github.com/codymorrison/gitwatch.git"
},
"dependencies": {
"antd": "3.19.1",
"apollo-boost": "0.4.0",
"dotenv": "8.0.0",
"graphql": "14.3.1",
"graphql.macro": "1.4.2",
"js-yaml": "3.13.1",
"react": "16.8.6",
"react-apollo": "2.5.6",
"react-apollo-hooks": "0.4.5",
"react-app-polyfill": "1.0.1",
"react-dom": "16.8.6",
"react-router-dom": "5.0.0",
"react-scripts": "3.0.1",
"react-use": "9.1.2",
"remark-parse": "6.0.3",
"remark-react": "5.0.1",
"typescript": "3.4.5",
"unified": "7.1.0"
},
"devDependencies": {
"@storybook/addon-actions": "5.0.11",
"@storybook/addon-links": "5.0.11",
"@storybook/react": "5.0.11",
"@types/history": "4.7.2",
"@types/http-proxy-middleware": "0.19.2",
"@types/jest": "24.0.13",
"@types/js-yaml": "3.12.1",
"@types/mdast": "3.0.2",
"@types/node": "12.0.3",
"@types/react": "16.8.19",
"@types/react-dom": "16.8.4",
"@types/react-router": "5.0.1",
"@types/react-router-dom": "4.3.3",
"@types/storybook__react": "4.0.1",
"@types/unist": "2.0.3",
"http-proxy-middleware": "0.19.1",
"netlify-lambda": "1.4.13",
"node-fetch": "2.6.0",
"npm-run-all": "4.1.5",
"prettier": "1.17.1"
},
"scripts": {
"start": "run-p start:**",
"build": "run-p build:**",
"start:app": "react-scripts start",
"build:app": "react-scripts build",
"start:lambda": "netlify-lambda serve src/lambda",
"build:lambda": "netlify-lambda build src/lambda",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}