-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.21 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
76
77
78
79
80
81
{
"name": "ghrecommender",
"version": "0.1.0",
"description": "GHRecommender - personalized recommendations for GitHub projects based on information about repositories starred by the user",
"homepage": "https://ghrecommender.io",
"license": "MIT",
"contributors": [
{
"name": "Andrey Lisin",
"url": "https://github.com/avli"
},
{
"name": "Egor Yurtaev",
"url": "https://github.com/yurtaev"
}
],
"private": true,
"dependencies": {
"raf": "^3.4.1",
"ramda": "^0.26.1",
"raven-js": "^3.27.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-emoji": "^0.5.0",
"react-ga": "^2.6.0",
"react-linkify": "^0.2.1",
"react-particles-js": "^2.7.0",
"react-refetch": "^2.0.0",
"react-router-dom": "^5.0.1",
"react-scripts": "3.1.0",
"react-snapshot": "^1.3.0",
"semantic-ui-css": "^2.2.12",
"semantic-ui-react": "^0.87.3",
"whatwg-fetch": "^3.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && react-snapshot",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"storybook": "start-storybook -s ./public -p 6006",
"build-storybook": "build-storybook",
"flow": "flow check",
"lint": "eslint ./src",
"upload": "aws s3 sync build/ s3://ghrecommender.io --cache-control max-age=86400 --acl=public-read",
"deploy": "yarn build && yarn upload",
"postinstall": "flow-typed install"
},
"reactSnapshot": {
"include": [
"/",
"/app/recommendations/"
],
"snapshotDelay": 300
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/runtime": "^7.5.5",
"@storybook/addon-actions": "^5.2.0-beta.28",
"@storybook/addon-docs": "^5.2.0-beta.28",
"@storybook/react": "5.2.0-beta.28",
"babel-loader": "8.0.6",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"flow-bin": "^0.105.1",
"flow-typed": "^2.6.1",
"react-test-renderer": "^16.9.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}