forked from paypal/paypal-checkout-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.25 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
{
"name": "paypal-checkout-demo",
"version": "1.0.29",
"description": "Demo application for paypal checkout",
"main": "src/app/server/index.js",
"files": [
"src/"
],
"scripts": {
"test": "npm test",
"build": "webpack --display-error-details --config webpack.conf.js",
"start:dev": "webpack-dev-server --config webpack.conf.js",
"server": "node src/app/server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paypal/paypal-checkout-demo.git"
},
"keywords": [
"paypal",
"checkout",
"demo"
],
"author": "Andrew Throener",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/paypal/paypal-checkout-demo/issues"
},
"homepage": "https://github.com/paypal/paypal-checkout-demo#readme",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"belter": "^1.0.92",
"body-parser": "^1.17.1",
"cookie-parser": "^1.4.3",
"react": "^16",
"react-dom": "^16",
"react-router": "^3.0.2",
"request": "^2.81.0",
"zalgo-promise": "^1.0.38"
}
}