-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.38 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
{
"name": "awspricingexplorer",
"version": "1.0.0",
"description": "A microservice for the AWS Pricing Api, written in JavaScript with Express, React, and blueprintjs.",
"main": "index.js",
"scripts": {
"start": "npm run serve | react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"serve": "nodemon --watch src/server.js src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jpdillingham/AWSPricingExplorer.git"
},
"keywords": [
"aws",
"pricing",
"react",
"blueprintjs",
"express"
],
"author": "JP Dillingham",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/jpdillingham/AWSPricingExplorer/issues"
},
"homepage": "https://github.com/jpdillingham/AWSPricingExplorer#readme",
"dependencies": {
"@blueprintjs/core": "^2.3.1",
"@blueprintjs/select": "^2.0.1",
"aws-sdk": "^2.266.1",
"body-parser": "^1.18.3",
"concurrently": "^3.6.0",
"cors": "^2.8.4",
"express": "^4.17.3",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-json-view": "^1.18.2",
"react-scripts": "^2.1.1",
"react-transition-group": "^2.4.0"
},
"devDependencies": {
"nodemon": "^1.17.5"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}