-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.23 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/mattijsbliek/radys"
},
"name": "radys",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "if-env NODE_ENV=production && npm run -s serve || npm run -s watch",
"build": "preact build",
"serve": "preact build && preact serve",
"watch": "preact watch",
"lint": "eslint src"
},
"browserslist": [
"> 1%",
"IE >= 11"
],
"eslintConfig": {
"extends": "eslint-config-synacor",
"rules": {
"indent": [
"error",
2
],
"comma-dangle": [
"error",
"always-multiline"
],
"react/jsx-indent-props": [
"error",
2
]
}
},
"eslintIgnore": [
"build/*"
],
"devDependencies": {
"dotenv": "^6.0.0",
"eslint": "^4.5.0",
"eslint-config-synacor": "^1.1.0",
"if-env": "^1.0.0",
"node-sass": "^4.5.3",
"preact-cli": "^2.2.1",
"prettier": "^1.7.4",
"sass-loader": "^6.0.6"
},
"dependencies": {
"is-url": "^1.2.2",
"preact": "^8.2.1",
"preact-compat": "^3.17.0",
"preact-helmet": "^4.0.0-alpha-3",
"preact-router": "^2.5.5",
"query-string": "^6.1.0",
"shortid": "^2.2.8"
}
}