-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 982 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
32
33
{
"name": "how-to-simple",
"version": "0.1.2",
"description": "Animation on how Play Digital Signage works",
"main": "index.js",
"scripts": {
"test": "eslint . && preact test",
"start": "if-env NODE_ENV=production && npm run -s serve || npm run -s dev",
"build": "preact build --template=template.html",
"serve": "preact build && preact serve",
"dev": "preact watch",
"deploy": "git push origin `git subtree split --prefix build master`:gh-pages --force"
},
"keywords": [],
"author": "Dan Mindru <[email protected]> (http://mindrudan.com/)",
"license": "ISC",
"devDependencies": {
"eslint": "^4.1.1",
"eslint-config-synacor": "^1.0.1",
"if-env": "^1.0.0",
"node-sass": "^4.5.3",
"preact-cli": "^1.3.0",
"sass-loader": "^6.0.6"
},
"dependencies": {
"color": "^2.0.0",
"gsap": "^1.20.2",
"preact": "^8.1.0",
"preact-compat": "^3.16.0",
"preact-router": "^2.5.2",
"uuid": "^3.1.0"
}
}