-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.66 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": "braintree-nextjs-example",
"version": "0.1.0",
"description": "Example of how to use braintree on a Nextjs App",
"scripts": {
"build": "npm run build:next && npm run build:server",
"build:next": "next build",
"build:server": "babel server -d compiled/server",
"start": "node compiled/server/app.js",
"dev": "nodemon server/app.js --watch server --exec babel-node",
"now": "now && now alias",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@material-ui/core": "^3.5.1",
"@material-ui/icons": "^3.0.1",
"@zeit/next-css": "^1.0.1",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"braintree": "^2.13.1",
"braintree-web": "^3.39.0",
"braintree-web-drop-in": "^1.14.1",
"braintree-web-drop-in-react": "^1.0.5",
"braintree-web-react": "^0.7.0",
"cors": "^2.8.5",
"dotenv": "^6.1.0",
"dotenv-webpack": "^1.5.7",
"express": "^4.16.4",
"helmet": "^3.15.0",
"jss": "^9.8.7",
"morgan": "^1.9.1",
"next": "^7.0.2",
"nprogress": "^0.2.0",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-jss": "^8.6.1"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-define": "^1.3.0",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"nodemon": "^1.18.6"
},
"author": "Manny Colon, colonmanuel7@gmail.com",
"license": "MIT"
}