-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.35 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "daily",
"version": "1.0.0",
"description": "my daily note app",
"main": "build/index.html",
"scripts": {
"preinstall": "typesync || :",
"postinstall": "typesync && npm install --ignore-scripts",
"lint": "./node_modules/.bin/eslint src/**/*.{ts,tsx}",
"start": "webpack-dev-server --config webpack.config.dev.js",
"build": "NODE_ENV='production' && webpack --config webpack.config.prod.js",
"deploy:hosting": "firebase deploy --only hosting",
"deploy": "firebase deploy"
},
"private": true,
"keywords": [],
"author": "Daisuke KONISHI",
"license": "ISC",
"devDependencies": {
"@fullhuman/postcss-purgecss": "^2.3.0",
"@types/autoprefixer": "^9.7.2",
"@types/cssnano": "^4.0.0",
"@types/eslint": "^6.8.1",
"@types/mini-css-extract-plugin": "^0.9.1",
"@types/postcss-import": "^12.0.0",
"@types/postcss-nested": "^4.2.3",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@types/terser-webpack-plugin": "^3.0.0",
"@types/webpack": "^4.41.17",
"@types/webpack-dev-server": "^3.11.0",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"autoprefixer": "^9.8.2",
"css-loader": "^3.5.3",
"cssnano": "^4.1.10",
"eslint": "^7.2.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"fork-ts-checker-webpack-plugin": "^4.1.6",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.9.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.2.1",
"postcss-sorting": "^5.0.1",
"source-map-loader": "^1.0.0",
"style-loader": "^1.2.1",
"tailwindcss": "^1.4.6",
"terser-webpack-plugin": "^3.0.3",
"ts-loader": "^7.0.5",
"typescript": "^3.9.3",
"typescript-eslint": "0.0.1-alpha.0",
"typesync": "^0.7.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"firebase": "^7.14.6",
"firebase-admin": "^8.12.1",
"formik": "^2.1.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0"
},
"browserslist": [
"defaults",
"not IE 11",
"not IE_Mob 11",
"maintained node versions"
]
}