-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "lb4-react-ssr-redux",
"version": "1.0.0",
"description": "A basic loopback application with react and redux.",
"keywords": [
"loopback-application",
"loopback",
"react",
"redux",
"ssr",
"react"
],
"engines": {
"node": ">=8.9"
},
"scripts": {
"build": "lb-tsc",
"build:watch": "lb-tsc --watch",
"clean": "lb-clean dist *.tsbuildinfo",
"lint": "npm run prettier:check && npm run eslint",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.js\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"eslint": "lb-eslint --report-unused-disable-directives .",
"eslint:fix": "npm run eslint -- --fix",
"pretest": "npm run clean && npm run build",
"test": "lb-mocha --allow-console-logs \"dist/__tests__\"",
"posttest": "npm run lint",
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
"docker:build": "docker build -t loopback-test .",
"docker:run": "docker run -p 3000:3000 -d loopback-test",
"migrate": "node ./dist/migrate",
"prestart": "npm run build",
"prepublishOnly": "npm run test",
"start": "nodemon index.js",
"build:client": "webpack --progress"
},
"repository": {
"type": "git",
"url": "https://github.com/rahulrkr08/lb4-react-ssr-redux.git"
},
"publishConfig": {
"access": "public"
},
"author": "",
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@loopback/boot": "^3.1.2",
"@loopback/context": "^3.13.2",
"@loopback/core": "^2.13.1",
"@loopback/rest": "^9.1.1",
"@loopback/rest-explorer": "^3.0.5",
"@loopback/service-proxy": "^3.0.5",
"@types/lodash": "^4.14.165",
"express": "^4.17.1",
"isomorphic-fetch": "^3.0.0",
"p-event": "^4.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/register": "^7.12.10",
"@loopback/build": "^6.2.8",
"@loopback/testlab": "^3.2.10",
"@loopback/tslint-config": "^2.1.0",
"@types/express": "^4.17.9",
"@types/got": "^9.6.11",
"@types/node": "^14.14.14",
"@types/p-event": "^3.0.0",
"babel-loader": "^8.2.2",
"bundlesize": "^0.18.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"friendly-errors-webpack-plugin": "^1.7.0",
"husky": "^4.3.6",
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.5",
"typescript": "^4.1.3",
"webpack": "^5.11.0",
"webpack-bundle-analyzer": "^4.3.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
}
}