-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.32 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
{
"name": "@rrze/fau-studium",
"version": "2.2.0-beta.1",
"private": true,
"description": "Add and edit degree programs and expose them via the REST API.",
"keywords": [],
"homepage": "https://github.com/RRZE-Webteam/FAU-Studium",
"license": "GPL-2.0-or-later",
"author": "Syde GmbH",
"scripts": {
"build": "wp-scripts build",
"build:dev": "wp-scripts start --no-watch",
"lint:js": "wp-scripts lint-js 'resources/**/*.{ts,tsx}'",
"lint:js-fix": "wp-scripts lint-js 'resources/**/*.{ts,tsx}' --fix",
"lint:md": "wp-scripts lint-md-docs",
"lint:md-fix": "wp-scripts lint-md-docs --fix",
"lint:style": "wp-scripts lint-style 'resources/**/*.scss'",
"lint:style-fix": "wp-scripts lint-style 'resources/**/*.scss' --fix",
"start": "wp-scripts start",
"test": "jest",
"prebuild": "if test \"$CI\" = \"true\" ; then composer install --no-dev ; fi",
"prebuild:dev": "if test \"$CI\" = \"true\" ; then composer install --no-dev ; fi"
},
"browserslist": [
"last 3 years"
],
"dependencies": {
"@wordpress/blob": "^3.25.0",
"@wordpress/block-editor": "^10.0.10",
"@wordpress/block-library": "^8.2.0",
"@wordpress/blocks": "^12.1.0",
"@wordpress/components": "^21.0.7",
"@wordpress/compose": "^6.1.0",
"@wordpress/core-data": "^6.1.0",
"@wordpress/data": "^8.1.0",
"@wordpress/dom-ready": "^3.17.1",
"@wordpress/editor": "^13.1.0",
"@wordpress/hooks": "^3.24.0",
"@wordpress/html-entities": "^3.28.0",
"@wordpress/i18n": "^4.17.1",
"@wordpress/media-utils": "^4.15.0",
"@wordpress/rich-text": "^6.2.0",
"immer": "^9.0.17",
"lodash": "^4.17.21",
"nanoid": "^4.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.4",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "29.2.4",
"@types/node": "18.11.18",
"@types/react": "17.0.39",
"@types/react-dom": "17.0.11",
"@types/styled-components": "^5.1.26",
"@wordpress/scripts": "^27.7.0",
"autoprefixer": "^10.4.14",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"react-test-renderer": "^17.0.2",
"ts-jest": "^29.0.5",
"ts-loader": "9.4.2",
"typescript": "^4.9.4"
}
}