-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
137 lines (137 loc) · 3.66 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "sleeplater.co",
"version": "0.0.0",
"description": "Website for sleep later",
"scripts": {
"start": "webpack-dev-server --inline --open",
"build": "webpack",
"stats": "NODE_ENV=production webpack --profile --json > bundle-stats.json && webpack-bundle-analyzer bundle-stats.json",
"watch": "webpack --watch",
"lint-sass": "sass-lint 'app/**/*.sass' -v",
"lint-js": "eslint . --ext js,vue",
"deploy": "rm -rf build && NODE_ENV=production webpack && cp now.json build && cd build && now",
"postinstall": "rm node_modules/vue2-hammer/.babelrc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/controversial/sleeplater.co.git"
},
"author": "Luke Deen Taylor",
"license": "MIT",
"bugs": {
"url": "https://github.com/controversial/sleeplater.co/issues"
},
"homepage": "https://github.com/controversial/sleeplater.co#readme",
"devDependencies": {
"autoprefixer": "^8.2.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-webpack": "^0.9.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-vue": "^4.4.0",
"exports-loader": "^0.7.0",
"extract-loader": "^2.0.1",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"node-sass": "^4.9.2",
"postcss-loader": "^2.1.3",
"raw-loader": "^0.5.1",
"sass-lint": "^1.12.1",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"url-loader": "^1.0.1",
"vue-loader": "^14.2.2",
"vue-style-loader": "^4.1.0",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.5.0",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.3"
},
"dependencies": {
"animate.css": "^3.6.1",
"babel-polyfill": "^6.26.0",
"chroma-js": "^1.3.7",
"country-list": "^1.1.0",
"hammerjs": "^2.0.8",
"lethargy": "^1.0.4",
"promise-polyfill": "^7.1.2",
"validator": "^10.2.0",
"vue": "^2.5.16",
"vue-analytics": "^5.12.2",
"vue-feather-icons": "^4.7.0",
"vue-router": "^3.0.1",
"vue-tippy": "^2.0.18",
"vue2-hammer": "^1.0.6",
"vuex": "^3.0.1",
"whatwg-fetch": "^2.0.4"
},
"babel": {
"presets": [
[
"es2015",
{
"modules": false
}
],
"es2016"
],
"plugins": [
"syntax-dynamic-import",
"transform-object-rest-spread",
"transform-async-to-generator"
]
},
"eslintConfig": {
"extends": [
"airbnb",
"plugin:vue/essential"
],
"env": {
"browser": true
},
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true
}
],
"import/no-webpack-loader-syntax": "off",
"import/newline-after-import": "off",
"global-require": "off",
"no-param-reassign": "off",
"prefer-destructuring": [
"error",
{
"array": false,
"object": true
},
{
"enforceForRenamedProperties": false
}
]
},
"settings": {
"import/resolver": "webpack"
},
"plugins": [
"vue"
]
}
}