-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.44 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": "bangle-io-landing",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "mkdir -p dist && touch dist/dummy.json && rm -r dist/* && cp -r ./src/** ./dist && npm run build:css",
"build:css": "NODE_ENV=production npx tailwindcss -i ./src/style.css -o ./dist/style.css",
"watch:copy": "cpx \"src/**/*.{html,js,png,jpg,webp,webm,mp4,ico,svg}\" dist --watch",
"watch:css": "npx tailwindcss -i ./src/style.css -o ./dist/style.css --watch",
"watch": "concurrently \"npm run watch:copy\" \"npx http-server dist --p 1234\"",
"server": "npx http-server dist -p 1234"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bangle-io/bangle-io-landing.git"
},
"keywords": [],
"author": "Kushan Joshi",
"license": "ISC",
"bugs": {
"url": "https://github.com/bangle-io/bangle-io-landing/issues"
},
"homepage": "https://github.com/bangle-io/bangle-io-landing#readme",
"devDependencies": {
"autoprefixer": "^10.3.7",
"concurrently": "^6.2.1",
"cpx": "^1.5.0",
"http-server": "^13.0.2",
"postcss": "^8.3.9",
"prettier": "^2.4.1",
"tailwindcss": "^2.2.17"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"quoteProps": "consistent",
"arrowParens": "always",
"printWidth": 240
},
"dependencies": {
"@github/markdown-toolbar-element": "^2.0.0"
}
}