This repository has been archived by the owner on Jan 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 3.08 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
{
"name": "frontity-wp-plugin",
"version": "1.14.3",
"private": true,
"description": "WordPress plugin to inject and configure » Frontity",
"main": "index.js",
"scripts": {
"start": "NODE_ENV='production' webpack --config webpack.config.js --watch",
"dev": "webpack --config webpack.config.js --watch",
"build": "rimraf admin/dist && NODE_ENV='production' webpack --config webpack.config.js",
"analyze": "NODE_ENV='production' ANALYZE=true webpack --config webpack.config.js",
"grunt": "grunt",
"test": "jest --watch --silent",
"test:ci": "jest --silent --passWithNoTests",
"test:debug": "node --inspect node_modules/.bin/jest --watch",
"cz": "git-cz",
"release": "rimraf admin/analyze && npm run build && semantic-release && rimraf node_modules"
},
"repository": {
"type": "git",
"url": "[email protected]:wp-pwa/wp-plugin.git"
},
"keywords": [
"frontity",
"wordpress",
"plugi"
],
"author": "Luis Herranz ([email protected]), Eduardo Campaña ([email protected])",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/wp-pwa/wp-plugin/issues"
},
"homepage": "https://github.com/wp-pwa/wp-plugin#readme",
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@semantic-release/changelog": "^3.0.1",
"@semantic-release/exec": "^3.3.0",
"@semantic-release/git": "^7.0.5",
"@semantic-release/github": "^5.2.5",
"@semantic-release/npm": "^5.1.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-styled-components": "^1.9.2",
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"dotenv": "^6.2.0",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"grunt": "^1.0.3",
"grunt-cli": "^1.3.2",
"grunt-contrib-uglify": "^4.0.0",
"grunt-wp-readme-to-markdown": "^2.0.1",
"husky": "^1.2.0",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"minimist": "^1.2.0",
"prettier": "^1.15.3",
"replace-in-file": "^3.4.2",
"rimraf": "^2.6.2",
"semantic-release": "^15.12.4",
"semantic-release-cli": "^4.0.12",
"simple-git": "^1.107.0",
"webpack": "^4.27.0",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"axios": "^0.18.0",
"grommet": "^2.1.1",
"grommet-icons": "^3.2.1",
"mobx": "^4.7.0",
"mobx-react": "^5.4.2",
"mobx-state-tree": "^3.8.1",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"styled-components": "^4.1.2",
"validator": "^10.9.0"
}
}