This repository was archived by the owner on Feb 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.08 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.08 KB
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
98
99
100
101
102
103
104
105
{
"name": "loopnexts",
"version": "3.0.0",
"description": "LoopBack + NextJS + TypeScript + SemanticUI = LoopNexTS",
"repository": "git@github.com:miZyind/loopnexts.git",
"author": "miZyind <mizyind@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "ts-node -T server | pino-pretty --colorize --ignore hostname,pid --translateTime SYS:isoDateTime",
"start": "cd app && node server",
"build": "yarn build:rmrf && yarn build:core && yarn build:next",
"build:rmrf": "rimraf app && rimraf client/.next",
"build:core": "tsc --project tsconfig.prod.json && cpy .env.production app --rename .env",
"build:next": "cpy client/**/*.* !client/next.config.ts app --parents && next build app/client",
"lint": "tslint --project .",
"lint:fix": "tslint --project . --fix"
},
"engines": {
"node": ">=10.15"
},
"babel": {
"presets": [
"next/babel",
"@zeit/next-typescript/babel"
],
"plugins": [
"styled-components",
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
]
]
},
"prettier": {
"singleQuote": true,
"jsxSingleQuote": true,
"trailingComma": "all",
"arrowParens": "always",
"endOfLine": "lf"
},
"dependencies": {
"@loopback/boot": "^1.4.4",
"@loopback/context": "^1.20.2",
"@loopback/core": "^1.8.5",
"@loopback/openapi-v3": "^1.7.0",
"@loopback/repository": "^1.8.2",
"@loopback/rest": "^1.16.3",
"@loopback/rest-explorer": "^1.2.5",
"@loopback/service-proxy": "^1.2.5",
"@zeit/next-css": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"dotenv": "^8.0.0",
"i18next": "^17.0.6",
"i18next-browser-languagedetector": "^3.0.1",
"i18next-express-middleware": "^1.8.0",
"i18next-node-fs-backend": "^2.1.3",
"i18next-xhr-backend": "^3.0.0",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-optipng": "^7.0.0",
"imagemin-svgo": "^7.0.0",
"next": "^9.0.1",
"next-composer": "^1.0.2",
"next-fonts": "^0.17.0",
"next-optimized-images": "^2.5.3",
"next-routes": "^1.4.2",
"pino": "^5.12.6",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hirc": "^1.0.2",
"react-i18next": "^10.11.4",
"rxjs": "^6.5.2",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.87.3",
"styled-components": "^4.3.2",
"tslib": "^1.10.0"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@loopback/testlab": "^1.6.3",
"@types/next": "^8.0.6",
"@types/node": "^12.6.3",
"@types/pino": "^5.8.8",
"@types/react": "^16.8.23",
"@types/styled-components": "^4.1.18",
"babel-plugin-styled-components": "^1.10.6",
"cpy-cli": "^2.0.0",
"pino-pretty": "^3.2.0",
"rimraf": "^2.6.3",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.0.0",
"typescript": "^3.5.3"
}
}