-
Notifications
You must be signed in to change notification settings - Fork 121
/
package.json
99 lines (99 loc) · 2.86 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": "themosis-framework",
"version": "2.0.5",
"description": "A WordPress framework.",
"directories": {
"test": "resources/assets/js/tests"
},
"scripts": {
"dev": "NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "NODE_ENV=development webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --config=node_modules/laravel-mix/setup/webpack.config.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/themosis/framework.git"
},
"keywords": [
"wordpress",
"framework",
"php"
],
"author": "Julien Lambé",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/themosis/framework/issues"
},
"homepage": "https://github.com/themosis/framework",
"main": "resources/assets/js/index.js",
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/plugin-proposal-object-rest-spread": "^7.18.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@types/jest": "^27.5.2",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"babel-jest": "^28.1.0",
"babel-loader": "^8.2.5",
"jest": "^28.1.0",
"laravel-mix": "^6.0.44",
"lint-staged": "^13.0.0",
"postcss": "^8.4.14",
"sass": "^1.52.1",
"sass-loader": "^13.0.0",
"ts-jest": "^28.0.3",
"ts-loader": "^9.3.0",
"typescript": "^4.7.2",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@types/wordpress__data": "^6.0.0",
"@types/wordpress__edit-post": "^4.0.1",
"@wordpress/components": "^19.12.0",
"@wordpress/data": "^6.10.0",
"@wordpress/edit-post": "^6.7.0",
"@wordpress/rich-text": "^5.8.0",
"axios": "^0.27",
"classnames": "^2.3",
"lodash": "^4.17",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-sortable-hoc": "^2.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleNameMapper": {
"\\.(css|scss)$": "identity-obj-proxy"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"lint-staged": {
"*.php": [
"php ./vendor/bin/php-cs-fixer fix --config .php_cs.dist",
"git add"
]
}
}