-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
85 lines (85 loc) · 2.6 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
{
"name": "saasify-frontend-boilerplate-cra",
"private": true,
"description": "CRA frontend boilerplate for Saasify products.",
"author": "Saasify <[email protected]>",
"repository": "saasify-sh/saasify-frontend-boilerplate-cra",
"homepage": "https://saasify.sh",
"license": "MIT",
"engines": {
"node": ">=10"
},
"scripts": {
"update-deployment": "saasify get $SAASIFY_DEPLOYMENT_ID -o src/lib/deployment.json",
"start": "SKIP_PREFLIGHT_CHECK=true react-app-rewired start",
"build": "SKIP_PREFLIGHT_CHECK=true react-app-rewired build",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"test": "run-s test:*",
"test:lint": "eslint .",
"test:prettier": "prettier '**/*.js' --check",
"posttest": "run-s build"
},
"keywords": [
"saasify",
"saas"
],
"dependencies": {
"@saasify/redoc": "^2.0.2",
"antd": "^3.23.5",
"copy-text-to-clipboard": "^2.1.0",
"core-js": "^3.2.1",
"css-var": "^1.0.0-b0",
"dangerously-set-html-content": "^1.0.3",
"downloadjs": "^1.4.7",
"is-url": "^1.2.4",
"mobx": "^5.13.1",
"mobx-react": "^6.1.3",
"prop-types": "^15.7.2",
"qs": "^6.9.1",
"react": "^16.13.1",
"react-body-classname": "^1.3.0",
"react-dom": "^16.13.1",
"react-error-boundary": "^1.2.5",
"react-ga": "^2.7.0",
"react-helmet": "^5.2.1",
"react-markdown": "^4.2.2",
"react-router-dom": "^5.1.2",
"react-saasify": "^1.20.1",
"react-scripts": "2.1.8",
"remove-markdown": "^0.3.0",
"styled-components": "^4.3.2",
"swagger-ui-react": "^3.25.0",
"titleize": "^2.1.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"babel-eslint": "^10.0.3",
"compression-webpack-plugin": "^3.0.0",
"customize-cra": "^0.5.0",
"directory-named-webpack-plugin": "^4.0.1",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.9.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-standard": "^4.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"react-app-rewired": "^2.1.1",
"source-map-explorer": "^2.0.1",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.3.8"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}