-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 896 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
{
"name": "numl.design",
"version": "0.0.1",
"description": "Home page for NUDE Elements",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "rm -rf .cache && parcel --out-dir tmp src/index.html",
"build": "mkdir -p static && rm -vrf static/* && parcel build --out-dir static src/index.html",
"deploy": "rm -rf .cache && npm run build && mv static/index.html static/landing.html && rsync -ruv static/* cloud:/usr/share/nginx/numl.design/",
"now": "npm run build && now --prod static --name numl-design"
},
"keywords": [
"design",
"system",
"framework"
],
"author": "Andrey Yamanov <tenphi@gmail.com>",
"license": "ISC",
"dependencies": {
"@webcomponents/custom-elements": "^1.4.1",
"remarkable": "^2.0.1"
},
"devDependencies": {
"cssnano": "^4.1.10",
"parcel": "^1.12.4"
}
}