-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
{
"private": false,
"name": "GeoTraing.at",
"version": "0.0.1",
"license": "GPLv3",
"scripts": {
"start": "if-env NODE_ENV=production && npm run -s serve || npm run -s dev",
"build": "preact build",
"serve": "preact build && preact serve",
"dev": "preact watch",
"lint": "eslint src"
},
"eslintConfig": {
"extends": "eslint-config-synacor"
},
"eslintIgnore": [
"build/*"
],
"devDependencies": {
"css-loader": "^0.28.7",
"eslint": "^4.5.0",
"eslint-config-synacor": "^1.1.0",
"if-env": "^1.0.0",
"json-loader": "^0.5.7",
"preact-cli": "^2.0.0",
"style-loader": "^0.19.0"
},
"dependencies": {
"firebase": "^4.6.2",
"firebaseui": "^2.4.1",
"font-awesome": "^4.7.0",
"isomorphic-fetch": "^2.2.1",
"leaflet": "^1.2.0",
"preact": "^8.2.1",
"preact-compat": "^3.17.0",
"preact-helmet": "^4.0.0-alpha-3",
"preact-router": "^2.5.5",
"react-ga": "^2.3.5",
"whatwg-fetch": "^2.0.3",
"xmlhttprequest": "^1.8.0"
}
}