-
Notifications
You must be signed in to change notification settings - Fork 119
/
package.json
44 lines (44 loc) · 1.42 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": "@cloudflare-apps/create-cloudflare-app",
"version": "1.0.0",
"description": "Cloudflare Apps boilerplate featuring DNS powered by Webpack and Babel",
"scripts": {
"start": "npm-run-all dev:setup dev:webpack",
"dev:webpack": "webpack --watch --colors",
"dev:setup": "npm-run-all lint",
"build": "npm-run-all lint build:webpack",
"build:webpack": "NODE_ENV=production webpack --colors",
"lint": "node_modules/.bin/eslint --fix --ext .js src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudflare-apps/create-cloudflare-app.git"
},
"author": "Cloudflare Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/cloudflare-apps/create-cloudflare-app/issues"
},
"homepage": "https://github.com/cloudflare-apps/create-cloudflare-app#readme",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.7.0",
"css-loader": "^1.0.1",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "2.6.1",
"eslint-watch": "^4.0.2",
"extract-loader": "^3.0.0",
"file-loader": "^2.0.0",
"prettier": "^1.14.3",
"style-loader": "^0.23.1",
"webpack": "^4.24.0",
"webpack-cli": "^3.1.2",
"yarn-run-all": "^3.1.1"
}
}