generated from snek-at/jaen-template-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.72 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
92
93
94
95
96
97
98
99
{
"name": "@snek-at/jaen-template",
"version": "1.0.0",
"homepage": "https://homepage.schettn.snek.at/",
"description": "A template repository for Jaen",
"scripts": {
"start": "craco start",
"build": "craco build",
"predeploy": "yarn run build",
"deploy": "gh-pages -d build",
"type-check": "tsc",
"type-check:watch": "npm run type-check -- --watch",
"build2": "npm run build:types && npm run build:js",
"build:types": "tsc",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline --ignore \"src/**/*.test.ts\" --copy-files",
"commit": "git-cz"
},
"main": "lib/index.js",
"files": [
"lib",
"LICENSES"
],
"repository": {
"type": "git",
"url": "git+https://github.com/snek-at/homepage.git"
},
"author": "Nico Schett",
"license": "EUPL-1.2",
"bugs": {
"url": "https://github.com/snek-at/homepage/issues"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/plugin-syntax-bigint": "^7.8.3",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.12.7",
"@trivago/prettier-plugin-sort-imports": "^2.0.2",
"@types/node": "^14.17.3",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.7",
"@types/react-router-dom": "^5.1.7",
"babel-plugin-inline-react-svg": "^2.0.1",
"babel-plugin-root-import": "^6.6.0",
"babel-plugin-transform-scss": "^1.0.9",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.26.0",
"eslint-plugin-github": "^4.1.3",
"eslint-plugin-react": "^7.24.0",
"prettier": "^2.2.1",
"react-scripts": "^4.0.3",
"redux-devtools-extension": "^2.13.9",
"typescript": "^4.2.4"
},
"dependencies": {
"@craco/craco": "^6.1.2",
"@reduxjs/toolkit": "^1.5.1",
"@schettnet/bridge": "^1.0.2",
"@snek-at/jaen": "^1.2.2",
"gh-pages": "^3.2.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-spring": "^9.2.3",
"redux": "^4.1.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:react/recommended"
],
"rules": {
"react/prop-types": 0,
"react/react-in-jsx-scope": "off"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}