-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
31 lines (31 loc) · 954 Bytes
/
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
{
"name": "blazin-fast-apps",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "cross-env NODE_ENV=production snowpack build --clean",
"format": "prettier **/*.{html,css,ts} --write",
"lh": "lighthouse http://localhost:8080/challenges/01-lighthouse/index.html --quiet --chrome-flags=\"--headless\" --budget-path=./budget.json --output-path=./lh-report.html --view",
"serve": "http-server ./build -p 8080",
"start": "snowpack dev"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@snowpack/plugin-postcss": "^1.4.3",
"@snowpack/plugin-webpack": "^3.0.0",
"concurrently": "^6.2.1",
"cross-env": "^7.0.3",
"http-server": "^13.0.0",
"lighthouse": "^8.3.0",
"postcss": "^8.3.6",
"prettier": "^2.3.2",
"snowpack": "^3.8.6",
"tailwindcss": "^2.2.7",
"typescript": "^4.3.5"
},
"dependencies": {
"@tailwindcss/forms": "^0.3.3"
}
}