-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.97 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
{
"name": "movienow",
"version": "1.0.0",
"description": "Movies",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config ./webpack.dev.js",
"build": "webpack --config ./webpack.prod.js",
"test": "jest",
"deploy": "./node_modules/.bin/surge --domain https://movienow.surge.sh",
"clean": "rimraf ./dist",
"prettier:write": "./node_modules/.bin/prettier --write './**/*{.js,.html,.scss}'",
"prettier:check": "./node_modules/.bin/prettier --check './src/**/*{.js,.html,.scss}'",
"sass": "node-sass -w scss/ -o css/"
},
"author": "[email protected], nbenakis",
"license": "ISC",
"dependencies": {
"jest": "^24.1.0",
"lodash": "^4.17.15",
"node-sass": "^4.11.0"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.5.5",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"babel-minify-webpack-plugin": "^0.3.1",
"brotli-webpack-plugin": "^1.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^0.26.2",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.6.0",
"lit-html": "^1.1.2",
"mini-css-extract-plugin": "^0.5.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier": "1.18.2",
"resolve-url-loader": "^3.1.0",
"rimraf": "^3.0.0",
"sass-loader": "^6.0.3",
"style-loader": "^0.13.2",
"surge": "^0.21.3",
"terser-webpack-plugin": "^2.1.2",
"url-loader": "^2.1.0",
"webpack": "4.20.2",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.0",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2",
"workbox-webpack-plugin": "^4.3.1"
}
}