-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.21 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
{
"name": "learning-paths-block",
"version": "1.0.0",
"description": "Wordpress block displaying the learning paths from the API of L'Université Numérique",
"main": "index.js",
"license": "MIT",
"author": "Pierre Duverneix",
"contributors": [
"Pierre Duverneix <[email protected]> (https://github.com/Hipjea/)"
],
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/node": "^16.18.36",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/webpack": "^5.28.1",
"@types/wordpress__block-editor": "^6.0.6",
"@types/wordpress__blocks": "^12.5.0",
"@webpack-cli/generators": "^3.0.7",
"@wordpress/api-fetch": "^6.32.0",
"@wordpress/block-editor": "^12.3.0",
"@wordpress/blocks": "^12.12.0",
"@wordpress/i18n": "^4.35.0",
"@wordpress/scripts": "^26.6.0",
"axios": "^1.4.0",
"copy-webpack-plugin": "^11.0.0",
"core-js": "^3.31.0",
"css-loader": "^6.8.1",
"identity-obj-proxy": "^3.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"sass": "^1.63.6",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"scripts": {
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"babel-loader": "^9.1.2",
"eslint": "^8.43.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"typescript": "^5.1.3"
}
}