-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.15 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "cms-pjwstk",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"@ant-design/icons": "^4.3.0",
"@paypal/checkout-server-sdk": "^1.0.2",
"@reduxjs/toolkit": "^1.5.0",
"antd": "^4.9.2",
"module-alias": "^2.2.2",
"mongoose": "^5.11.5",
"next": "^10.0.2",
"next-joi": "^2.1.1",
"next-redux-wrapper": "^6.0.2",
"ra-data-simple-rest": "^3.10.4",
"ra-input-rich-text": "^3.12.0",
"randomcolor": "^0.6.2",
"react": "^17.0.1",
"react-admin": "^3.11.4",
"react-cookie": "^4.0.3",
"react-dom": "^17.0.1",
"react-hook-form": "^6.14.1",
"react-paypal-button-v2": "^2.6.2",
"react-paypal-express-checkout": "^1.0.5",
"react-redux": "^7.2.2",
"redux-saga": "^1.1.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/faker": "^5.1.5",
"@types/mongoose": "^5.10.2",
"@types/node": "^14.14.9",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"babel-loader": "^8.2.2",
"eslint": "^7.19.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"faker": "^5.1.0",
"onpaypal__checkout-server-sdk": "^1.0.0",
"react-svg-loader": "^3.0.3",
"redux-devtools-extension": "^2.13.8",
"typescript": "^4.1.2"
},
"scripts": {
"fix": "eslint --fix frontend/**/**.ts api/**/**.ts admin/**/**.ts ",
"dev:api": "next dev api -p 6969",
"dev:frontend": "next frontend dev -p 3000",
"dev:admin": "next dev admin -p 3001",
"build:admin": "next build admin",
"build:frontend": "next build frontend",
"build:api": "next build api",
"start:admin": "next start admin -p 3001",
"start:api": "next start api -p 6969"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MJKruszewski/cms-pjwstk.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MJKruszewski/cms-pjwstk/issues"
},
"homepage": "https://github.com/MJKruszewski/cms-pjwstk#readme"
}