-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.31 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
{
"name": "american-press",
"version": "1.0.0",
"description": "A web-app book browser.",
"main": "server/index.js",
"dependencies": {
"axios": ">=0.21.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"express": "^4.16.3",
"query-string": "^6.2.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-router-dom": "^4.3.1",
"react-select": "^2.2.0"
},
"babel": {
"presets": [
"env",
"react",
"stage-2"
]
},
"devDependencies": {
"morgan": "^1.9.1",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0"
},
"scripts": {
"postinstall": "npm run webpack",
"webpack": "./node_modules/webpack/bin/webpack.js",
"start:dev": "npm run webpack -- --watch --mode=development & nodemon server.js --ignore src/ --ignore dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nmelhado/americanpress.git"
},
"keywords": [
"books",
"literature",
"book"
],
"authors": [
"Nicholas Melhado"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/nmelhado/americanpress/issues"
},
"homepage": "https://github.com/nmelhado/americanpress#readme"
}