-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.27 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
100
101
102
103
104
105
106
107
108
109
{
"name": "@snek-shipyard/jaen-cms",
"version": "2.2.2",
"description": "CMS framework for ReactJS",
"scripts": {
"type-check": "ttsc --noEmit",
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint src --ext .ts,.tsx",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "ttsc --emitDeclarationOnly",
"all": "npm run build && npm run format && npm run lint && npm pack",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline --ignore \"src/**/*.test.ts\" --copy-files"
},
"main": "lib/index.js",
"files": [
"lib",
"LICENSES"
],
"repository": {
"type": "git",
"url": "git+https://github.com/snek-shipyard/jaen-cms.git"
},
"author": "Nico Schett",
"license": "EUPL-1.2",
"bugs": {
"url": "https://github.com/snek-shipyard/jaen-cms/issues"
},
"homepage": "https://github.com/snek-shipyard/jaen-cms#readme",
"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/crypto-js": "^4.0.1",
"@types/draft-js": "^0.11.2",
"@types/lodash": "^4.14.168",
"@types/node": "^14.17.3",
"@types/react": "^17.0.5",
"@types/react-router-dom": "^5.1.7",
"babel-eslint": "^10.1.0",
"babel-plugin-inline-react-svg": "^2.0.1",
"babel-plugin-root-import": "^6.6.0",
"babel-plugin-transform-scss": "^1.0.9",
"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",
"ttypescript": "^1.5.12",
"typescript": "^4.2.4",
"typescript-transform-paths": "^2.2.4"
},
"dependencies": {
"@ant-design/icons": "^4.6.2",
"@draft-js-plugins/buttons": "^4.1.0",
"@draft-js-plugins/editor": "^4.1.0",
"@draft-js-plugins/image": "^4.1.1",
"@draft-js-plugins/inline-toolbar": "^4.1.2",
"@draft-js-plugins/linkify": "^4.1.1",
"@reduxjs/toolkit": "^1.5.1",
"@schettnet/bridge": "^1.0.2",
"antd": "^4.16.2",
"crypto-js": "^4.0.0",
"deepmerge": "^4.2.2",
"draft-js": "^0.11.7",
"draft-js-export-html": "^1.4.1",
"draft-js-import-html": "^1.4.1",
"drop": "file:drop-1.0.0.tgz",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-diff-viewer": "^3.1.1",
"react-dom": "^17.0.2",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"redux": "^4.1.0",
"redux-persist": "^6.0.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"
}
}
}