-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 975 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
34
35
36
37
38
{
"name": "@qclock/client-aurora",
"version": "1.3.1",
"license": "MIT",
"scripts": {
"start": "if-env NODE_ENV=production && npm run -s serve || npm run -s dev",
"build": "npx preact build --service-worker=false --template src/template.html",
"serve": "npx preact build && preact serve",
"dev": "npx preact watch --template src/template.html",
"lint": "npx eslint src"
},
"files": [
"build"
],
"eslintConfig": {
"extends": "eslint-config-synacor"
},
"eslintIgnore": [
"build/*"
],
"devDependencies": {
"eslint": "^4.9.0",
"eslint-config-synacor": "^2.0.2",
"if-env": "^1.0.0",
"moment": "2.20.1",
"node-sass": "4.7.2",
"preact": "^8.2.6",
"preact-cli": "^2.0.1",
"preact-compat": "^3.17.0",
"preact-redux": "2.0.3",
"preact-router": "^2.5.7",
"redux": "3.7.2",
"redux-logger": "3.0.6",
"redux-thunk": "2.2.0",
"sass-loader": "6.0.6",
"tzdata": "1.0.9"
}
}