-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
52 lines (52 loc) · 1.54 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
{
"name": "wp-plugins",
"description": "A set of WordPress enchancement to improve the integration with the Frontity Framework",
"private": true,
"homepage": "https://github.com/frontity/wp-plugins#readme",
"repository": {
"type": "git",
"url": "https://github.com/frontity/wp-plugins.git"
},
"bugs": {
"url": "https://github.com/frontity/wp-plugins/issues"
},
"workspaces": [
"plugins/*"
],
"scripts": {
"dev": "webpack --watch",
"build": "node scripts/build.js",
"sync": "node ./scripts/symlink.js",
"sync:prod": "node ./scripts/symlink.js --production",
"install-wp-tests": "./bin/install-wp-tests.sh frontity_tests root '' 127.0.0.1 latest",
"phpcs": "composer run phpcs",
"phpcbf": "composer run phpcbf",
"phpunit": "composer run phpunit",
"version": "npx changeset version && node scripts/version.js"
},
"dependencies": {
"@emotion/core": "^10.0.22",
"@emotion/styled": "^10.0.23",
"@frontity/connect": "^1.0.1",
"axios": "^0.21.1",
"chalk": "^2.4.2",
"minimist": "^1.2.3"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@changesets/changelog-github": "^0.2.0",
"@changesets/cli": "^2.14.1",
"babel-loader": "^8.0.6",
"core-js": "^3.1.4",
"fs-extra": "^8.1.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"replace-in-file": "^3.4.3",
"simple-git": "^1.107.0",
"symlink-dir": "^3.1.0",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5"
}
}