forked from themosis/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.52 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
{
"name": "themosis-framework",
"version": "2.0.2",
"description": "A WordPress framework.",
"directories": {
"test": "resources/assets/js/tests"
},
"scripts": {
"dev": "NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --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 --hide-modules --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/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^23.3.14",
"babel-cli": "^6.26.0",
"babel-preset-react-app": "^3.1.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.8.0",
"laravel-mix": "^4.0.16",
"ts-jest": "^24.0.2",
"ts-loader": "^4.5.0",
"typescript": "^3.5.1",
"vue-template-compiler": "^2.6.10"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"@types/classnames": "^2.2.8",
"@types/react": "^16.8.19",
"@types/react-color": "^2.17.0",
"@types/react-dom": "^16.8.4",
"@types/react-sortable-hoc": "^0.6.5",
"@wordpress/components": "^4.0.0",
"@wordpress/rich-text": "^2.0.0",
"acorn": "^6.1.1",
"axios": "^0.18.1",
"classnames": "^2.2.6",
"lodash": "^4.17.11",
"node-sass": "^4.12.0",
"react": "^16.8.6",
"react-color": "^2.17.3",
"react-dom": "^16.8.6",
"react-sortable-hoc": "^0.8.3",
"sass-loader": "^7.1.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleNameMapper": {
"\\.(css|scss)$": "identity-obj-proxy"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}