-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.82 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.82 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
{
"name": "@pota/react-template",
"version": "1.3.4",
"bugs": {
"url": "https://github.com/mediamonks/pota/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mediamonks/pota.git",
"directory": "templates/react"
},
"license": "MIT",
"author": "frontend.monks",
"type": "module",
"scripts": {
"build": "pota build",
"build-storybook": "build-storybook",
"dev": "pota dev",
"postinstall": "npm rebuild fsevents && npx patch-package && npx husky install;",
"plop": "pota plop",
"start-storybook": "start-storybook -p 9001",
"test": "jest --config ./test-utils/jest.config.ts",
"typecheck": "tsc --project tsconfig.json --noEmit --noUnusedLocals",
"fix": "run-s fix:* && npm run format",
"fix:eslint": "npm run lint:eslint -- --fix",
"format": "prettier \"**/*.{js,jsx,ts,tsx,scss,md,json}\" --write --loglevel warn",
"lint": "run-s lint:*",
"lint:eslint": "eslint . --ext .ts,.tsx --cache --cache-location node_modules/.cache/.eslintcache",
"rsync": "rsync -avPx dist/* ${npm_package_name}@${npm_package_config_host}:~/public/ --delete"
},
"config": {
"host": "TODO: Add a host name."
},
"browserslist": [
"last 2 versions",
"not ie <= 11, not ie_mob <= 11",
"not dead"
],
"prettier": "@mediamonks/prettier-config",
"eslintConfig": {
"extends": "@mediamonks/eslint-config-react",
"parserOptions": {
"project": "./tsconfig.json"
}
},
"dependencies": {
"isntnt": "^1.5.2",
"jest": "^27.3.1",
"mobx": "^6.3.7",
"mobx-react-lite": "^3.2.2",
"polished": "^4.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router": "^6.0.1",
"react-router-dom": "^6.0.1",
"styled-components": "^5.3.3",
"ts-jest": "^27.0.7",
"web-vitals": "^2.1.1"
},
"devDependencies": {
"@mediamonks/eslint-config-react": "^2.0.0",
"@mediamonks/prettier-config": "^1.0.0",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/builder-webpack5": "6.4.9",
"@storybook/manager-webpack5": "^6.4.9",
"@storybook/react": "^6.3.12",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.0.2",
"@types/node": "^17.0.21",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"@types/styled-components": "^5.1.15",
"husky": "^7.0.4",
"lint-staged": "^12.3.1",
"npm-run-all": "^4.1.5",
"typescript": "^4.5.2"
},
"create-pota": {
"scripts": {
"builders": [
"@pota/react-webpack-scripts"
],
"codeGen": [
"@pota/plop-scripts"
]
}
},
"engines": {
"node": ">=16",
"npm": ">=7",
"yarn": "unsupported"
}
}