-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.27 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
{
"name": "wp-todo",
"title": "WP Todo",
"version": "1.0.0",
"description": "A todo for your WordPress powered site.",
"author": {
"name": "Aubrey Portwood and Eric Fuller",
"url": "https://github.com/aubreypwd"
},
"scripts": {
"build": "yarn webpack --env.env=prod",
"webpack": "webpack",
"dev": "yarn webpack --watch --env.env=dev",
"jsonserver": "json-server src/api/seed.js --port 8080"
},
"license": "GPLv2",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.38",
"@babel/core": "^7.0.0-beta.38",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.38",
"@babel/preset-env": "^7.0.0-beta.38",
"autoprefixer": "^9.1.3",
"babel-loader": "8.0.0",
"browser-sync": "^2.18.7",
"browser-sync-webpack-plugin": "^2.2.2",
"css-loader": "^1.0.0",
"eslint-config-wordpress": "^2.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"json-server": "^0.14.0",
"mustache-loader": "^1.4.1",
"node-sass": "^4.5.3",
"progress-bar-webpack-plugin": "^1.10.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"uuid": "^3.0.1",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"axios": "^0.18.0",
"mitt": "^1.0.1"
}
}