generated from garronej/ts-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·85 lines (85 loc) · 2.26 KB
/
package.json
File metadata and controls
executable file
·85 lines (85 loc) · 2.26 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
{
"name": "geocommuns-core",
"version": "0.16.7",
"description": "Set of shared utilities (hooks and Components) for the geocommuns project",
"repository": {
"type": "git",
"url": "git://github.com/EIG6-Geocommuns/geocommuns-core.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo DODO",
"dev": "tsc -w",
"build": "tsc && yarn copy-assets",
"copy-assets": "copyfiles -u 1 src/assets/**/* dist/",
"lint:check": "eslint . --ext .ts,.tsx",
"lint": "npm run lint:check -- --fix",
"_format": "prettier '**/*.{ts,tsx,json,md}'",
"format": "npm run _format -- --write",
"format:check": "npm run _format -- --list-different",
"link-in-main-project": "ts-node --skipProject src/scripts/link-in-main-project.ts"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
],
"*.{ts,tsx,json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged -v"
}
},
"author": "u/EIG6-Geocommuns",
"license": "MIT",
"files": [
"src/",
"!src/test/",
"!src/scripts",
"dist/",
"!dist/test/",
"!dist/tsconfig.tsbuildinfo"
],
"keywords": [],
"homepage": "https://github.com/EIG6-Geocommuns/geocommuns-core",
"peerDependencies": {
"@codegouvfr/react-dsfr": "^0.73.2",
"@emotion/react": "^11.10.5",
"@mui/material": "^5.10",
"ol": "^7.1.0",
"react": "*",
"react-router-dom": "^6.8.1",
"tss-react": "^4.8.4"
},
"devDependencies": {
"@codegouvfr/react-dsfr": "^0.73.2",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.6",
"@mui/material": "^5.10",
"@types/node": "^18.13.0",
"@types/openlayers": "^4.6.18",
"@types/react": "^18",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"copyfiles": "^2.4.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^4.3.8",
"lint-staged": "^11.1.1",
"ol": "~7.1.0",
"prettier": "^2.3.2",
"react": "^18.2.0",
"react-router-dom": "^6.8.1",
"ts-node": "^10.9.1",
"tss-react": "^4.8.4",
"typescript": "^4.9.5"
},
"dependencies": {
"powerhooks": "^0.26.2",
"react-device-detect": "^2.2.3",
"tsafe": "^1.4.3"
}
}