-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 851 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
{
"name": "which-key-code",
"version": "1.0.0",
"private": true,
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "parcel serve src/*.html",
"build": "rm -rf dist/* && parcel build src/*.html --public-url ./",
"deploy:gh": "gh-pages -d dist -u \"github-actions-bot <[email protected]>\"",
"deploy:cname": "echo 'keycodes.sospedra.me' > dist/CNAME",
"deploy": "yarn deploy:cname && yarn deploy:gh",
"test:ci": "http-server ./dist -p 1234 & cypress run",
"test": "cypress run"
},
"dependencies": {
"tailwindcss": "^1.5.2"
},
"devDependencies": {
"autoprefixer": "^9.8.5",
"cypress": "^4.11.0",
"gh-pages": "^3.1.0",
"http-server": "^0.12.3",
"parcel-bundler": "^1.12.4",
"postcss-modules": "^3.2.0",
"prettier": "^2.0.5",
"typescript": "^3.9.7"
}
}