forked from zero-to-mastery/GameSenshi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
137 lines (137 loc) · 3.49 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "game-senshi",
"version": "1.0.0",
"description": "Hire Your Favorite Player!",
"private": true,
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/tylim88/GameSenshi.git"
},
"keywords": [
"react",
"PWA",
"Firebase",
"Game Senshi",
"social",
"casual",
"service"
],
"author": "tylim",
"license": "MIT",
"bugs": {
"url": "https://github.com/tylim88/GameSenshi/issues"
},
"scripts": {
"lint": "eslint src/ --fix",
"start": "react-scripts start",
"prod": "env-cmd .config/prod.env npm run start",
"dev": "env-cmd .config/dev.env npm run start",
"build": "react-scripts build && node src/sw-build.js",
"puild": "env-cmd .config/prod.env npm run build",
"duild": "env-cmd .config/dev.env npm run build",
"deploy": "npm run lint && npm run puild && firebase deploy --only hosting",
"test": "react-scripts test",
"eject": "react-scripts eject",
"install:clean": "rm -rf node_modules/ && rm -rf package-lock.json && npm i",
"compile-sass": "node-sass src/assets/scss/blk-design-system-react.scss src/assets/css/blk-design-system-react.css",
"minify-sass": "node-sass src/assets/scss/blk-design-system-react.scss src/assets/css/blk-design-system-react.min.css --output-style compressed",
"map-sass": "node-sass src/assets/scss/blk-design-system-react.scss src/assets/css/blk-design-system-react.css --source-map true"
},
"dependencies": {
"card-validator": "^6.2.0",
"chart.js": "^2.7.3",
"chroma-js": "^2.0.4",
"classnames": "^2.2.6",
"country-list": "^2.1.1",
"final-form": "^4.12.0",
"final-form-focus": "^1.1.2",
"firebase": "^6.0.2",
"headroom.js": "0.9.4",
"interweave": "^11.1.0",
"localforage": "^1.7.3",
"moment": "^2.24.0",
"node-sass": "^4.11.0",
"nouislider": "^13.1.1",
"payment-icons": "^1.2.1",
"perfect-scrollbar": "^1.4.0",
"react": "^16.8.3",
"react-bootstrap-switch": "^15.5.3",
"react-calendar": "^2.19.0",
"react-chartjs-2": "^2.7.4",
"react-credit-cards": "^0.7.0",
"react-datetime": "^2.16.3",
"react-dom": "^16.8.3",
"react-element-to-jsx-string": "^14.0.2",
"react-final-form": "^5.0.2",
"react-google-maps": "9.4.5",
"react-loader-spinner": "^2.3.0",
"react-resize-detector": "^4.1.3",
"react-router-dom": "^4.3.1",
"react-router-last-location": "^2.0.0-beta.3",
"react-scripts": "^2.1.5",
"react-select": "^2.4.3",
"react-slick": "^0.24.0",
"react-tagsinput": "^3.19.0",
"reactstrap": "^7.1.0",
"unstated": "^2.1.1",
"yup": "^0.27.0"
},
"devDependencies": {
"env-cmd": "^8.0.2",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"holderjs": "^2.9.6",
"husky": "^1.3.1",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"workbox-build": "^4.3.1"
},
"prettier": {
"eslintIntegration": true,
"singleQuote": true,
"jsxSingleQuote": true,
"trailingComma": "es5",
"semi": false,
"jsxBracketSameLine": true,
"useTabs": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"eslintConfig": {
"extends": [
"react-app",
"prettier/react",
"eslint:recommended",
"plugin:prettier/recommended"
],
"rules": {
"no-console": "off",
"no-unused-vars": 1
},
"settings": {
"import/resolver": {
"node": {
"moduleDirectory": [
"node_modules",
"src/"
]
}
}
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}