-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.97 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.97 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
{
"name": "@retesm/api",
"version": "0.1.1",
"description": "React Emotion SSR with yarn workspace starter.",
"main": "build/index.js",
"module": "build/esm/index.esm.js",
"types": "build/types/index.d.ts",
"repository": "https://github.com/alfed7/react-ts-emotion-ssr-monorepo.git",
"author": "Alexander Fedorenko",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.1.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"express-jwt": "^8.4.1",
"express-jwt-permissions": "^1.3.7",
"jsonwebtoken": "^9.0.1",
"lodash": "^4.17.21",
"mongoose": "^7.4.3",
"node-fetch": "^3.3.2",
"parseurl": "^1.3.3",
"redis": "^4.6.7",
"ts-node-dev": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/eslint-parser": "^7.22.9",
"@babel/plugin-transform-runtime": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@babel/runtime": "^7.22.6",
"@emotion/babel-plugin": "^11.11.0",
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.2",
"@types/jest": "^29.5.3",
"@types/jsonwebtoken": "^9.0.2",
"@types/lodash": "^4.14.196",
"@types/morgan": "^1.9.4",
"@types/node": "^20.4.8",
"@types/parseurl": "^1.3.1",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.47.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.2",
"morgan": "^1.10.0",
"prettier": "^3.0.1",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^7.1.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"scripts": {
"build": "yarn tsc & rollup -c",
"clean": "rimraf build",
"watch": "rollup -c -w",
"dev": "npm-run-all --parallel tsc-watch watch",
"tsc": "tsc -b",
"tsc-watch": "tsc -b --watch",
"lint": "eslint \"src/**\" --ext .ts --ext .tsx",
"test": "jest"
}
}