-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.3 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.3 KB
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
{
"private": true,
"name": "website",
"version": "0.1.0",
"license": "MIT",
"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",
"rules": {
"no-unused-vars": "warn",
"react/sort-comp": "off",
"lines-around-comment": "off",
"react/prefer-stateless-function": "off"
}
},
"eslintIgnore": [
"build/*"
],
"devDependencies": {
"decko": "^1.2.0",
"draft-js": "^0.10.5",
"eslint": "^4.5.0",
"eslint-config-synacor": "^1.1.0",
"if-env": "^1.0.0",
"immutable": "^3.8.2",
"node-sass": "^4.9.3",
"normalize.css": "^8.0.0",
"preact-cli": "^2.0.0",
"preact-waypoint": "^1.0.7",
"react-froala-wysiwyg": "^2.8.5",
"react-icons": "^3.0.5",
"react-mde": "^5.8.0",
"react-quill": "^1.3.1",
"sass-loader": "^7.1.0",
"showdown": "^1.8.7",
"slate": "^0.41.2",
"slate-react": "^0.18.10",
"standard": "^12.0.1"
},
"dependencies": {
"firebase": "^5.5.1",
"preact": "^8.2.1",
"preact-compat": "^3.18.4",
"preact-material-components": "^1.4.3",
"preact-router": "^2.5.5"
}
}