-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 837 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 837 Bytes
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
{
"name": "payment-request-experiments",
"version": "1.0.0",
"private": true,
"scripts": {
"clean": "rm -rf build",
"start": "node server/index.js",
"start:client": "react-scripts start",
"start:server": "nodemon server/index.js",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"heroku-postbuild": "yarn clean && yarn build"
},
"dependencies": {
"body-parser": "1.20.0",
"bulma": "1.0.4",
"cors": "2.8.5",
"express": "4.18.1",
"prop-types": "15.8.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-instantsearch-dom": "5.7.0",
"react-scripts": "3.4.4",
"request": "2.88.2",
"request-promise-native": "1.0.9",
"uuid": "11.0.4"
},
"devDependencies": {
"nodemon": "2.0.22"
},
"proxy": "http://localhost:8080"
}