This repository has been archived by the owner on Jan 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
91 lines (91 loc) · 2.8 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
{
"name": "razzle-examples-with-typescript",
"version": "0.0.0",
"private": true,
"license": "MIT",
"scripts": {
"start": "razzle start",
"build": "razzle build",
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/server.js",
"format": "prettier --write \"./src/**/**.{ts,tsx,js,jsx,json}\"",
"commit": "git-cz",
"lint": "eslint --fix ./src"
},
"engines": {
"node": ">=14.0.0 <=15.2.0"
},
"dependencies": {
"cross-fetch": "^3.0.6",
"effector": "^21.7.5",
"effector-inspector": "^0.4.1",
"effector-logger": "^0.9.0",
"effector-react": "^21.2.1",
"effector-root": "^1.1.0",
"express": "^4.17.1",
"patronum": "^1.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-is": "^17.0.1",
"react-router": "^5.2.0",
"react-router-config": "^5.1.1",
"react-router-dom": "^5.2.0",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@eslint-kit/eslint-config-base": "^2.1.2",
"@eslint-kit/eslint-config-node": "^2.0.0",
"@eslint-kit/eslint-config-prettier": "^2.0.0",
"@eslint-kit/eslint-config-react": "^2.0.0",
"@eslint-kit/eslint-config-typescript": "^3.1.2",
"@types/express": "^4.17.0",
"@types/jest": "^26.0.19",
"@types/node": "^12.6.6",
"@types/react": "^16.8.23",
"@types/react-dom": "^17.0.0",
"@types/react-router": "^5.1.8",
"@types/react-router-config": "^5.0.2",
"@types/react-router-dom": "^5.1.6",
"@types/styled-components": "^5.1.7",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/parser": "^4.11.0",
"babel-plugin-styled-components": "^1.12.0",
"commitizen": "^4.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.16.0",
"eslint-import-resolver-typescript": "^2.3.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"razzle": "^3.3.8",
"razzle-plugin-typescript": "^3.3.8",
"ts-jest": "^26.4.4",
"tslint": "^6.1.3",
"typescript": "^4.1.3"
},
"jest": {
"transform": {
"\\.(ts|tsx)$": "ts-jest",
"\\.css$": "<rootDir>/node_modules/razzle/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|css|json)$)": "<rootDir>/node_modules/razzle/config/jest/fileTransform.js"
},
"moduleNameMapper": {
"^lib/(.*)$": "<rootDir>/src/lib/$1"
},
"transformIgnorePatterns": ["node_modules"],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.(ts|js)?(x)",
"<rootDir>/src/**/?(*.)(spec|test).(ts|js)?(x)"
],
"moduleFileExtensions": ["ts", "tsx", "js", "json"],
"collectCoverageFrom": ["src/**/*.{js,jsx,ts,tsx}"]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}