-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.59 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
{
"name": "pricelist-admin",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "~4.12.1",
"@material-ui/icons": "~4.11.2",
"ra-data-fakerest": "^3.9.0",
"ra-data-simple-rest": "^2.9.6",
"ra-i18n-polyglot": "^3.17.2",
"ra-input-markdown": "^1.2.0",
"ra-input-rich-text": "^3.9.0",
"ra-language-english": "^3.9.0",
"ra-language-french": "^3.9.0",
"react": "^16.9.0",
"react-admin": "^3.9.0",
"react-admin-color-input": "^1.0.8",
"react-dom": "^16.9.0",
"react-scripts": "3.1.1"
},
"devDependencies": {
"gh-pages": "^3.2.3",
"import-sort-style-module": "^6.0.0",
"prettier": "^2.3.2",
"prettier-plugin-import-sort": "^0.0.7"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"deploy_github": "gh-pages -d build",
"deploy": "yarn build && aws s3 sync build/ s3://admin.prijslijst.info --delete && aws cloudfront create-invalidation --distribution-id E1FGEHDQURI1BB --paths '/*'",
"prettier": "prettier -c '{**/*.{js,jsx,scss,md},public/**/*.html}'",
"prettier-fix": "prettier --write '{**/*.{js,jsx,scss,md},public/**/*.html}'"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module"
}
}
}