-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathpackage.json
52 lines (52 loc) · 1.5 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
{
"name": "hn-search",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/algolia/hn-search",
"author": "Jonas Badalic <[email protected]>",
"scripts": {
"dev": "./bin/webpack-dev-server",
"build": "NODE_ENV=production ./bin/webpack",
"test": "jest",
"test:watch": "jest --watchAll"
},
"license": "MIT",
"dependencies": {
"@algolia/algolia-browser-telemetry": "^0.1.5",
"algoliasearch": "^4.0.2",
"classnames": "^2.2.6",
"core-js": "3",
"date-fns": "^2.0.1",
"downshift": "^3.2.10",
"normalize-scss": "^7.0.1",
"query-string": "^6.11.0",
"react": "^16.8.6",
"react-day-picker": "^7.3.0",
"react-dom": "^16.8.6",
"react-feather": "^1.1.6",
"react-ga": "^2.5.7",
"react-helmet": "^5.2.1",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"react-transition-group": "^4.2.2",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@rails/webpacker": "^4.3.0",
"@types/jest": "^24.0.13",
"@types/react": "^16.8.17",
"@types/react-day-picker": "^5.3.0",
"@types/react-dom": "^16.8.4",
"@types/react-router": "^5.0.1",
"@types/react-router-dom": "^5.1.3",
"@types/react-transition-group": "^4.2.2",
"babel-plugin-import": "^1.12.0",
"babel-plugin-module-resolver": "^3.2.0",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.0",
"typescript": "^3.6.2",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-dev-server": "^3.3.1"
}
}