-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.06 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
{
"name": "react-bookcase",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --require ts-node/register --reporter spec \"./**/*.test.tsx\"",
"build": "./node_modules/.bin/webpack",
"start": "npm run build && node server.js",
"deploy": "npm run build && aws s3 cp dist s3://bookcase.kwelsch.com --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kwelsch7/react-bookcase.git"
},
"keywords": [],
"author": "konnor",
"license": "ISC",
"bugs": {
"url": "https://github.com/kwelsch7/react-bookcase/issues"
},
"homepage": "https://github.com/kwelsch7/react-bookcase#readme",
"dependencies": {
"axios": "^0.18.0",
"bootstrap": "4.1.3",
"classnames": "^2.2.6",
"d3": "^5.9.1",
"express": "^4.16.4",
"jquery": "3.3.1",
"lodash": "4.17.11",
"popper.js": "1.14.3",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-redux": "^6.0.0",
"react-router-dom": "^4.3.1",
"redux": "^4.0.1",
"typescript": "^3.2.2"
},
"devDependencies": {
"@types/chai": "4.1.2",
"@types/chai-enzyme": "0.6.3",
"@types/classnames": "^2.2.7",
"@types/d3": "^5.7.0",
"@types/enzyme": "3.1.9",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jquery": "^3.3.29",
"@types/lodash": "^4.14.120",
"@types/mocha": "2.2.43",
"@types/react": "^16.7.18",
"@types/react-dom": "^16.0.11",
"@types/react-redux": "^6.0.12",
"@types/react-router-dom": "^4.3.1",
"@types/sinon": "4.3.0",
"chai": "^4.2.0",
"css-loader": "^1.0.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"html-webpack-plugin": "^3.2.0",
"mocha": "^6.1.4",
"node-sass": "^4.10.0",
"sass-loader": "^7.1.0",
"sinon": "^7.3.2",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.3",
"ts-node": "^8.2.0",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.0",
"webpack-dev-middleware": "^3.5.0",
"webpack-hot-middleware": "^2.24.3"
}
}