-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.35 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
{
"name": "grammas-kitchen",
"version": "0.0.0",
"description": "a place to keep your family recipes",
"author": "nick makes",
"license": "MIT",
"private": false,
"main": "src/index.ts",
"homepage": "http://grammas.github.io/kitchen/",
"repository": {
"type": "git",
"url": "git+https://github.com/grammas/kitchen.git"
},
"scripts": {
"compile": "tsc",
"lint": "tslint -p ./",
"test": "jest",
"start": "webpack-dev-server --env=dev",
"build": "webpack --env=prod",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.10",
"chroma-js": "^2.0.3",
"connected-react-router": "6.4.0",
"core-js": "3.0.1",
"emotion-theming": "^10.0.10",
"es6-promise": "4.2.6",
"fetch-everywhere": "1.0.5",
"fraction.js": "^4.0.12",
"history": "4.9.0",
"hoist-non-react-statics": "3.3.0",
"mongodb-stitch-browser-sdk": "4.3.2",
"query-string": "6.4.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-loadable": "^5.5.0",
"react-media": "^1.9.2",
"react-redux": "7.0.0",
"react-router": "5.0.0",
"react-router-dom": "5.0.0",
"redux": "4.0.1",
"redux-logger": "3.0.6",
"redux-thunk": "2.3.0"
},
"devDependencies": {
"@types/chroma-js": "^1.4.1",
"@types/core-js": "^2.5.0",
"@types/enzyme": "3.1.14",
"@types/enzyme-adapter-react-16": "1.0.3",
"@types/history": "4.7.2",
"@types/jest": "23.3.10",
"@types/node": "10.12.21",
"@types/react": "16.8.8",
"@types/react-dom": "16.8.2",
"@types/react-loadable": "^5.5.0",
"@types/react-redux": "6.0.13",
"@types/react-router-dom": "4.3.1",
"@types/redux-logger": "3.0.6",
"@types/yup": "0.26.9",
"copy-webpack-plugin": "^5.0.2",
"enzyme": "3.7.0",
"enzyme-adapter-react-16": "1.6.0",
"file-loader": "3.0.1",
"gh-pages": "2.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "23.6.0",
"prettier": "1.16.4",
"react-hot-loader": "4.6.5",
"terser-webpack-plugin": "1.2.2",
"ts-jest": "23.10.5",
"ts-loader": "5.3.3",
"tslib": "1.9.3",
"tslint": "^5.15.0",
"tslint-react": "^4.0.0",
"typescript": "3.3.3",
"webpack": "4.29.2",
"webpack-cli": "3.2.3",
"webpack-dev-server": "3.1.14",
"webpack-merge": "^4.2.1"
}
}