-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
45 lines (45 loc) · 1.12 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
{
"name": "platzi-optimizacion-web",
"version": "0.2.0",
"description": "Proyecto del curso de Optimizacion Web de Platzi",
"author": "@jonalvarezz",
"main": "serve.js",
"scripts": {
"start": "npm run serve",
"dev": "concurrently \"webpack -w\" \"micro-dev\"",
"export": "node export.js",
"build": "webpack -p && node export",
"serve": "serve .",
"pre-commit": "pretty-quick --staged",
"prepare": "husky install"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"license": "ISC",
"devDependencies": {
"concurrently": "^6.2.0",
"css-loader": "^5.2.6",
"date-fns": "^2.23.0",
"husky": "^7.0.1",
"hyperscript": "^2.0.2",
"lodash": "^4.17.21",
"lozad": "^1.16.0",
"micro": "^9.3.4",
"micro-dev": "^3.0.0",
"modal-video": "^2.4.3",
"prettier": "2.3.1",
"pretty-quick": "^3.1.0",
"serve": "^12.0.0",
"style-loader": "^2.0.0",
"webpack": "^4.46.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"isomorphic-unfetch": "^3.1.0"
}
}