-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.36 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
{
"private": true,
"name": "badra-bahaar",
"version": "0.0.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",
"test": "jest",
"test:watch": "jest --watch"
},
"eslintConfig": {
"extends": "eslint-config-synacor"
},
"eslintIgnore": [
"build/*"
],
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/register": "^7.7.4",
"@fortawesome/fontawesome-free": "^5.12.0",
"babel-preset-env": "^1.7.0",
"eslint": "^6.7.2",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-preact": "^1.1.6",
"eslint-config-synacor": "^1.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"font-awesome": "^4.7.0",
"if-env": "^1.0.0",
"isomorphic-fetch": "^2.2.1",
"jest": "^24.9.0",
"mocha": "^6.2.2",
"preact-cli": "^2.0.0"
},
"dependencies": {
"normalize.css": "^8.0.1",
"preact": "^8.5.2",
"preact-compat": "^3.17.0",
"preact-render-to-string": "^4.1.0",
"redux-zero": "^5.1.1",
"tachyons": "^4.11.1"
}
}