-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.01 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 3.01 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
{
"name": "tsaryk.com",
"private": true,
"scripts": {
"build": "npm run build:prod --",
"build:dev": "npm run webpack -- --config ./config/webpack.dev.ts",
"build:prod": "npm run webpack -- --config ./config/webpack.prod.ts",
"build:prod:analyzer": "BUILD_ANALYZER=true npm run build:prod",
"build:prod:relative": "BUILD_RELATIVE=true npm run build:prod",
"clean": "rimraf ./dist",
"deploy:prod": "node ./scripts/deploy-prod.js",
"deploy:prod:local": "export $(grep -v '^#' .env | xargs) && npm run deploy:prod",
"fix": "npm run eslint -- --fix",
"format": "prettier --write '**/*.{html,md,json}' && npm run lint:es -- --fix",
"lint": "run-p lint:*",
"lint:es": "eslint . --ext .js,.ts,.tsx",
"lint:types": "tsc --noEmit",
"prebuild:dev": "npm run clean",
"prebuild:prod": "npm run clean",
"serve": "ws --directory ./dist --spa ./index.html --port 8080",
"start": "npm run start:dev",
"start:dev": "npm run webpack-dev-server -- --config ./config/webpack.dev.ts",
"start:dev:external": "npm run start:dev -- -- --host 0.0.0.0",
"start:prod": "npm run build && npm run serve",
"test": "jest",
"webpack": "TS_NODE_PROJECT=config/webpack.tsconfig.json webpack",
"webpack-dev-server": "TS_NODE_PROJECT=config/webpack.tsconfig.json webpack-dev-server"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@emailjs/browser": "^3.12.1",
"browser-locale": "^1.0.3",
"date-fns": "^2.30.0",
"mobx": "^5.15.7",
"mobx-react": "^6.3.1",
"rambdax": "^3.7.0",
"ramda": "~0.28.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-router-dom": "^5.3.4",
"styled-components": "^5.3.11"
},
"devDependencies": {
"@phts/eslint-config": "^2.1.1",
"@phts/prettier-config": "^1.2.0",
"@types/history": "^4.7.11",
"@types/html-webpack-plugin": "^3.2.9",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.19",
"@types/ramda": "~0.26.44",
"@types/react": "^16.14.62",
"@types/react-dom": "^16.9.25",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.34",
"@types/webpack-dev-server": "^4.7.1",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^8.57.1",
"eslint-plugin-prettier": "^5.2.3",
"favicons-webpack-plugin": "^6.0.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.3",
"image-webpack-loader": "^8.1.0",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^10.0.0",
"jest": "^29.7.0",
"jimp": "^0.22.12",
"local-web-server": "^5.4.0",
"mockdate": "^3.0.5",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.2",
"rimraf": "^3.0.2",
"shell-escape": "^0.2.0",
"svg-sprite-loader": "^6.0.11",
"ts-jest": "^29.2.6",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3",
"webpack": "^5.105.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.1",
"webpack-merge": "^6.0.1"
}
}