-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.48 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
{
"name": "guilded",
"version": "1.0.0",
"description": "Web app for freelancer cooperation.",
"main": "index.js",
"repository": "https://github.com/sassafrastech/guilded",
"license": "MIT",
"private": true,
"scripts": {
"format": "prettier --write '*.{js,md}' --write '{src,config,plugins}/**/*.{js,md}'",
"lint": "eslint --ext .js .",
"test": "jest",
"start": "react-static start",
"build": "react-static build",
"serve": "serve dist -p 3000",
"stage": "yarn run build --staging && yarn run serve",
"deploy": "yarn run build && netlify deploy",
"analyze": "yarn run build --analyze",
"clean": "rm -rf build dist artifacts tmp"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"setupFilesAfterEnv": [
"<rootDir>/config/jest/setupJest.js"
],
"testMatch": [
"<rootDir>/src/**/*.test.js"
],
"transform": {
"\\.js$": "babel-jest",
"\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^(?!.*\\.(js|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
],
"resetMocks": true
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"proseWrap": "always",
"overrides": [
{
"files": "static.config.js",
"options": {
"printWidth": 120
}
}
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"browserslist": [
"defaults",
"not IE 11",
"maintained node versions"
],
"dependencies": {
"@material-ui/core": "4.11.3",
"@material-ui/icons": "4.11.2",
"clsx": "1.1.1",
"prop-types": "15.7.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-hot-loader": "4.13.0",
"react-static": "7.5.1",
"react-static-plugin-reach-router": "7.5.1",
"react-static-plugin-sitemap": "7.5.1",
"react-static-plugin-source-filesystem": "7.5.1"
},
"devDependencies": {
"babel-eslint": "10.1.0",
"eslint": "7.2.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-cooperka": "1.0.4",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "4.0.0",
"husky": "4.3.6",
"jest": "26.6.3",
"jest-watch-typeahead": "0.6.1",
"netlify-cli": "3.7.1",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"react-test-renderer": "17.0.1"
}
}