-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"name": "hacktoberfest-website-2019",
"version": "1.0.0",
"author": "abhijithvijayan",
"private": true,
"description": "Website for Hacktoberfest 2019 powered by TraceCEA",
"repository": "https://github.com/ceadoor/hacktoberfest-website-2019.git",
"license": "MIT",
"engines": {
"node": ">= 8 <11"
},
"workspaces": {
"packages": [
"server",
"client"
],
"nohoist": []
},
"scripts": {
"dev:web": "yarn workspace @hacktoberfest/client dev",
"server": "yarn workspace @hacktoberfest/server server",
"build:web": "yarn workspace @hacktoberfest/client build",
"deploy:web": "yarn workspace @hacktoberfest/client deploy",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"babel-eslint": "10.0.3",
"concurrently": "^4.1.2",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-onepass": "1.4.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.1.2",
"prettier": "^1.18.2"
}
}