-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.71 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
{
"name": "recipe-analyzer",
"version": "0.1.0",
"description": "TypeScript Library for analyzing recipes contained in a Google Doc",
"private": true,
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"run": "ts-node index.ts",
"test": "jest",
"watch": "webpack --watch",
"build": "webpack",
"format": "prettier --write \"**/*.{ts,tsx,test.ts}\"",
"start": "webpack-dev-server --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KesterTong/recipe-analyzer.git"
},
"author": "Kester Tong <kestert@google.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/KesterTong/recipe-analyzer/issues"
},
"homepage": "https://github.com/KesterTong/recipe-analyzer#readme",
"dependencies": {
"@types/google-apps-script": "^1.0.12",
"@types/react-autosuggest": "^9.3.14",
"@types/react-dom": "^16.9.6",
"@types/react-redux": "^7.1.9",
"@types/redux-thunk": "^2.1.0",
"@types/throttle-debounce": "^2.1.0",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"react": "^16.13.1",
"react-autosuggest": "^10.0.2",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"throttle-debounce": "^2.1.0"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.13.2",
"jest": "^25.4.0",
"prettier": "2.0.1",
"source-map-loader": "^0.2.4",
"ts-jest": "^25.4.0",
"ts-loader": "^6.2.2",
"ts-node": "^8.9.0",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"jest": {
"preset": "ts-jest"
}
}