forked from SaraVieira/awesome-talks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.77 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": "awesome-talks",
"description": "Awesome Talks",
"license": "MIT",
"version": "0.0.1",
"dependencies": {
"@fortawesome/fontawesome": "^1.1.8",
"@fortawesome/fontawesome-free": "^5.6.3",
"@fortawesome/fontawesome-svg-core": "^1.2.12",
"@fortawesome/free-solid-svg-icons": "^5.6.3",
"@fortawesome/react-fontawesome": "^0.1.4",
"apollo-boost": "0.1.27",
"apollo-cache-inmemory": "1.4.2",
"apollo-client": "2.4.12",
"apollo-fetch": "^0.7.0",
"apollo-link": "1.2.6",
"apollo-link-http": "1.5.9",
"apollo-link-state": "0.4.2",
"card-vibes": "0.1.0",
"cookie-parser": "^1.4.3",
"eslint-config-react-app": "3.0.6",
"express": "4.16.4",
"formik": "1.4.2",
"graphql": "14.1.1",
"graphql-tag": "2.10.1",
"history": "4.7.2",
"isomorphic-fetch": "2.2.1",
"js-cookie": "^2.2.0",
"lodash.debounce": "4.0.8",
"razzle": "2.4.1",
"react": "16.7.0",
"react-apollo": "2.4.0",
"react-dom": "16.7.0",
"react-fluid-carousel": "^0.7.0",
"react-helmet": "5.2.0",
"react-modal": "3.8.1",
"react-router-dom": "4.3.1",
"react-social-sharing": "^3.0.1",
"react-styled-flexboxgrid": "3.0.0",
"react-youtube": "7.9.0",
"remcalc": "1.0.10",
"rss": "^1.2.2",
"shuffle-array": "1.0.1",
"styled-components": "4.1.3",
"styled-flex-component": "2.2.2",
"styled-is": "1.1.5",
"uuid": "^3.3.2"
},
"devDependencies": {
"@storybook/addon-actions": "4.1.7",
"@storybook/addon-links": "4.1.7",
"@storybook/addons": "4.1.7",
"@storybook/react": "4.1.7",
"all-contributors-cli": "5.10.2",
"babel-cli": "^6.26.0",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"enzyme-to-json": "^3.3.5",
"eslint": "5.12.1",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-react": "7.12.4",
"eslint-plugin-standard": "4.0.0",
"husky": "1.3.1",
"if-env": "1.0.4",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"jest-styled-components": "^6.3.1",
"lint-staged": "8.1.0",
"lodash-webpack-plugin": "0.11.5",
"npm-run-all": "^4.1.5",
"offline-plugin": "^5.0.6",
"prettier": "1.15.3",
"react-test-renderer": "^16.7.0",
"sinon": "7.2.3",
"webpack-bundle-analyzer": "3.0.3"
},
"scripts": {
"posttest": "npm run format",
"start": "NODE_ENV=production node ./build/server.js",
"dev": "razzle start",
"build": "razzle build",
"format": "prettier --write '**/*.{js,css,md}'",
"lint": "eslint . --cache --fix",
"test": "run-s lint",
"precommit": "lint-staged",
"jest": "jest",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"setupFiles": [
"./src/Tests/setup.js"
]
},
"now": {
"alias": "awesometalks.party"
},
"lint-staged": {
"*.{js,css,md}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add",
"jest --findRelatedTests"
]
}
}