-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.64 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
{
"name": "email-link-builder",
"description": "A Pen created at CodePen.io. You can find this one at https://codepen.io/ThatGuySam/pen/jYGwMR.",
"version": "1.0.0",
"main": "index.html",
"repository": {
"type": "git",
"url": "git+https://github.com/ThatGuySam/email-link-builder.git"
},
"keywords": [
"email",
"link",
"mailto"
],
"author": "Sam Carlton",
"license": "ISC",
"bugs": {
"url": "https://github.com/ThatGuySam/email-link-builder/issues"
},
"homepage": "https://github.com/ThatGuySam/email-link-builder#readme",
"scripts": {
"start": "npm run production",
"clean": "npm cache clean --force",
"rebuild-sass": "npm rebuild node-sass --force",
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch-poll": "npm run watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"lint": "eslint resources/assets/js --ext .vue",
"fix": "npm run lint -- --fix",
"stage": "yarn production && now --static",
"deploy": "netlifyctl deploy"
},
"devDependencies": {
"browser-sync": "^2.24.4",
"browser-sync-webpack-plugin": "2.0.1",
"cross-env": "^5.2.0",
"eslint": "^5.0.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-vue": "^4.5.0",
"html-webpack-plugin": "^4.0.0-beta.11",
"laravel-mix": "^5.0.1",
"laravel-mix-purgecss": "^5.0.0-rc.1",
"mix-html-builder": "^0.4.0",
"posthtml": "^0.12.0",
"posthtml-include": "^1.3.3",
"posthtml-loader": "^1.0.2",
"resolve-url-loader": "2.3.1",
"sass": "^1.15.3",
"sass-loader": "7.*"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.3.1",
"animate.css": "^3.7.0",
"axios": "^0.19.0",
"brownies": "^2.2.0",
"bulma": "^0.8.0",
"is_js": "^0.9.0",
"now-env": "^3.0.4",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
}
}