-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
54 lines (54 loc) · 1.71 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
{
"name": "discohouse",
"version": "1.0.0",
"description": "招待制SNS",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack && cp ./src/ogp.png dist/ && cp ./src/favicon.ico dist/",
"dev": "NODE_ENV=development webpack serve",
"format:fix": "prettier --write '**/*.{ts,tsx,js,jsx,json,md}'",
"format": "prettier --check './src/**/*.{ts,tsx,js,jsx,json,md}'",
"lint:fix": "eslint --fix 'src/**/*.{ts,tsx,js,jsx,json,md}'",
"lint": "eslint 'src/**/*.{ts,tsx,js,jsx,json,md}'",
"typecheck": "tsc -p . --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sadnessOjisan/discohouse.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sadnessOjisan/discohouse/issues"
},
"homepage": "https://github.com/sadnessOjisan/discohouse#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"css-loader": "^5.0.1",
"eslint": "^7.19.0",
"eslint-config-preact": "^1.1.3",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"html-webpack-plugin": "^4.5.1",
"prettier": "^2.2.1",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"webpack": "^5.19.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@adobe/react-spectrum": "^3.7.0",
"@spectrum-icons/workflow": "^3.2.0",
"firebase": "^8.2.5",
"goober": "^2.0.28",
"preact": "^10.5.12",
"preact-router": "^3.2.1",
"react-firebase-hooks": "^2.2.0",
"react-router": "^5.2.0",
"use-media": "^1.4.0"
}
}