-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "currency-exchange",
"version": "1.0.0",
"description": "",
"main": "server.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "jest",
"start": "node server.js",
"dev": "webpack-dev-server --open --mode development --watch",
"build": "webpack --mode production",
"heroku-postbuild": "webpack -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mau11/currency-exchange.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mau11/currency-exchange/issues"
},
"homepage": "https://github.com/mau11/currency-exchange#readme",
"dependencies": {
"express": "^4.17.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"babel-loader": "^8.1.0",
"file-loader": "^6.0.0",
"jest": "^26.1.0",
"webpack-dev-server": "^5.0.4"
}
}