forked from kadamwhite/wp-notebook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.39 KB
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
{
"name": "wp-notebook",
"description": "A WordPress plugin that creates a note management UI within WP-Admin",
"author": "K Adam White",
"version": "1.0.0",
"private": true,
"license": "GPLv2",
"browserslist": [
"> 5%",
"last 2 versions"
],
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"lint": "eslint --ext js,jsx src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"classnames": "^2.2.5",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"wpapi": "^1.0.2"
},
"devDependencies": {
"autoprefixer": "^6.7.0",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"css-loader": "^0.26.1",
"eslint": "^3.14.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"file-loader": "^0.9.0",
"find-cache-dir": "^0.1.1",
"hard-source-webpack-plugin": "^0.3.8",
"node-object-hash": "^1.1.5",
"postcss-loader": "^1.2.2",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "^2.4.0",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.2.0"
}
}