-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
100 lines (100 loc) · 2.95 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
{
"name": "@sasjs/react-seed-app",
"repository": "https://github.com/sasjs/react-seed-app",
"description": "The SASjs React Seed App",
"version": "2.0.0",
"keywords": [
"SAS",
"SASViya",
"SASjs"
],
"main": "index.tsx",
"homepage": ".",
"scripts": {
"start": "npx webpack-dev-server --config webpack.dev.js --open --hot",
"build": "npx webpack --config webpack.prod.js",
"docs": "typedoc --out ./public/docs/static/js && sasjs doc -t viya ",
"docs:serve": " docsify serve ./public/docs",
"deploy": "rsync -avhe ssh ./build/* --delete $SSH_ACCOUNT:$DEPLOY_PATH",
"buildAndDeploy": "npm run build && npm run deploy",
"lint:fix": "npx prettier --write \"src/**/*.{ts,tsx,js,jsx,html,css,sass,less,json,yml,md,graphql}\"",
"lint": "npx prettier --check \"src/**/*.{ts,tsx,js,jsx,html,css,sass,less,json,yml,md,graphql}\"",
"prepare": "git rev-parse --git-dir && git config core.hooksPath ./.git-hooks || true"
},
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@mui/icons-material": "^5.16.7",
"@mui/material": "^5.16.7",
"@emotion/react": "11.13.0",
"@emotion/styled": "11.13.0",
"@sasjs/adapter": "^4.11.0",
"@sasjs/core": "^4.52.4",
"@sasjs/utils": "^3.4.0",
"axios": "^0.27.2",
"moment": "^2.29.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-highlight": "^0.15.0",
"react-router-dom": "^6.26.0"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/node": "^7.16.8",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.17.12",
"@sasjs/cli": "^4.11.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.4",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"babel-loader": "^8.2.3",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"date-and-time": "2.4.1",
"dotenv": "^16.0.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "5.5.0",
"path": "0.12.7",
"sass": "^1.44.0",
"sass-loader": "^12.3.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"typedoc": "0.26.5",
"typescript": "^5.5.4",
"webpack": "5.68.0",
"webpack-cli": "4.9.1",
"webpack-dev-server": "4.9.2",
"webpack-merge": "^5.8.0"
},
"eslintConfig": {
"extends": "react-app",
"overrides": [
{
"files": [
"**/*.js"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}