-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
32 lines (32 loc) · 940 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
{
"name": "fuel-app",
"version": "1.0.0",
"description": "Know the fuel prices throughout the India.",
"main": "index.js",
"scripts": {
"test": "eslint src",
"start": "if-env NODE_ENV=production && npm run -s serve || npm run -s dev",
"build": "preact build --no-prerender && cat ./src/sw-push.js >> ./build/sw.js",
"serve": "preact build --no-prerender && preact serve",
"dev": "preact watch",
"deploy": "cd build && surge --domain https://fp.surge.sh"
},
"author": "https://github.com/gokulkrishh",
"license": "MIT",
"eslintConfig": {
"extends": "eslint-config-synacor"
},
"devDependencies": {
"eslint": "^4.1.1",
"eslint-config-synacor": "^1.0.1",
"if-env": "^1.0.0",
"preact-cli": "^1.4.0"
},
"dependencies": {
"localforage": "^1.5.0",
"preact": "^8.1.0",
"preact-compat": "^3.16.0",
"preact-router": "^2.5.2",
"promise-polyfill": "^6.0.2"
}
}