-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 953 Bytes
/
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
{
"name": "moltin-taxjar-example",
"version": "0.1.0",
"main": "index.js",
"repository": "https://github.com/moltin/taxjar-example",
"license": "MIT",
"private": true,
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"lint": "eslint --ext js,jsx ."
},
"dependencies": {
"@moltin/request": "^1.4.1",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"next": "^7.0.2",
"path-match": "^1.2.4",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-redux": "^6.0.0",
"react-thunk": "^1.0.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"taxjar": "^2.2.0"
},
"devDependencies": {
"@moltin/eslint-config": "git+ssh://git@github.com:moltin/eslint-config",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1"
}
}