-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (36 loc) · 1.13 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
{
"name": "NodeReactBraintree",
"version": "1.0.0",
"description": "This is an App to showcase API keys using braintree services",
"main": "index.js",
"scripts": {
"start": "node server/index.js",
"build": "webpack --mode production",
"dev": "webpack --mode development && node server/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/runtime": "7.0.0-beta.55",
"axios": "^0.19.0",
"braintree": "^2.21.0",
"braintree-web": "^3.55.0",
"braintree-web-drop-in-react": "^1.1.0",
"braintree-web-react": "^0.7.0",
"express": "^4.17.1",
"react": "^16.11.0",
"react-dom": "^16.11.0"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"babel-loader": "^8.0.6",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
}
}