This repository has been archived by the owner on Nov 23, 2021. It is now read-only.
generated from effector/razzle-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.05 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": "razzle-examples-with-typescript",
"version": "3.2.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"
},
"dependencies": {
"axios": "^0.19.2",
"cross-fetch": "^3.0.4",
"effector": "20.15",
"effector-inspector": "^0.2.2",
"effector-logger": "^0.5.0-8",
"effector-react": "20.7",
"effector-root": "^0.2.0",
"express": "^4.17.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-config": "^5.1.1",
"react-router-dom": "5.2",
"styled-components": "^5.0.1"
},
"devDependencies": {
"@commitlint/cli": "8.3",
"@commitlint/config-conventional": "8.3",
"@types/express": "4.17",
"@types/jest": "25",
"@types/node": "14",
"@types/react": "16.9.35",
"@types/react-dom": "16.9.8",
"@types/react-router-config": "^5.0.1",
"@types/react-router-dom": "^5.1.5",
"@types/styled-components": "5.1",
"@types/webpack-env": "1.15",
"babel-plugin-styled-components": "^1.10.7",
"commitizen": "4.1",
"cz-conventional-changelog": "3.2",
"husky": "4.2",
"lint-staged": "10.2",
"prettier": "2",
"razzle": "3.1",
"razzle-plugin-typescript": "3.1",
"ts-jest": "26",
"tslint": "6.1.2",
"typescript": "3.9.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"
},
"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"
}
}
}