-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.74 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.74 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
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
{
"name": "codenames",
"version": "0.1.0",
"description": "Codenames game",
"main": "index.js",
"scripts": {
"hot": "webpack-dev-server --hot",
"build": "cross-env NODE_ENV=production webpack --mode production",
"test": "jest --config ./jest/jest.config.js",
"test:watch": "jest --config ./jest/jest.config.js --watch",
"jest:integration": "jest --config ./jest/jest.config.integration.js",
"test:integration": "start-server-and-test storybook:test http-get://localhost:9009 jest:integration",
"test:all": "run-p test test:integration",
"storybook:test": "start-storybook --ci -p 9009 --quiet",
"storybook": "start-storybook -p 9010",
"prettier:staged": "prettier --write",
"eslint:staged": "eslint --fix",
"eslint:list": "eslint src/ ./.storybook",
"eslint:fix": "eslint src/ ./.storybook --fix",
"analyzer": "cross-env NODE_ENV=analysis webpack --profile --json > bundle-stats.json"
},
"keywords": [
"codenames",
"game"
],
"author": "avlyalin",
"license": "MIT",
"browserslist": {
"production": [
"> 0.25%",
"not dead"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test:all"
}
},
"lint-staged": {
"*.js": [
"npm run eslint:staged",
"npm run prettier:staged"
]
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@storybook/addon-knobs": "^5.3.18",
"@storybook/addon-viewport": "^5.3.18",
"@storybook/react": "^5.3.18",
"@testing-library/jest-dom": "^5.7.0",
"@testing-library/react": "^10.0.3",
"autoprefixer": "^9.7.6",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.4.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^6.0.1",
"cross-env": "^7.0.2",
"css-loader": "^3.5.3",
"dotenv-webpack": "^1.7.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"html-webpack-plugin": "^4.2.0",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.4.0",
"jest-image-snapshot": "^4.0.0",
"jest-puppeteer": "^4.4.0",
"json-loader": "^0.5.7",
"lint-staged": "^10.2.2",
"mini-css-extract-plugin": "^0.9.0",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-import": "^12.0.1",
"prettier": "^2.0.5",
"puppeteer": "^3.1.0",
"react-toastify": "^6.0.5",
"sass": "^1.26.3",
"sass-loader": "^8.0.2",
"start-server-and-test": "^1.11.0",
"style-loader": "^1.2.0",
"stylelint": "^13.3.3",
"stylelint-webpack-plugin": "^2.0.0",
"svg-inline-loader": "^0.8.2",
"terser-webpack-plugin": "^3.0.1",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"whatwg-fetch": "^3.0.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"@hot-loader/react-dom": "^16.13.0",
"animate.css": "^4.1.0",
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.3.1",
"core-js": "^3.6.5",
"firebase": "^7.14.1",
"i18next": "^19.4.5",
"prop-types": "^15.7.2",
"react": "16.13.0",
"react-dom": "16.13.0",
"react-hot-loader": "^4.12.20",
"react-i18next": "^11.5.1",
"react-router-dom": "^5.1.2",
"tailwindcss": "^1.4.5"
}
}