-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.83 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.83 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
{
"name": "example",
"version": "1.1.86",
"private": true,
"scripts": {
"build:app": "arui-scripts build",
"build:docker": "arui-scripts docker-build",
"bundle-analyze": "arui-scripts bundle-analyze",
"start": "NODE_ENV=localhost arui-scripts start",
"test": "arui-scripts test",
"lint:styles": "arui-presets-lint styles",
"lint:scripts": "arui-presets-lint scripts",
"format": "arui-presets-lint format",
"format:check": "arui-presets-lint format:check",
"lint": "yarn lint:styles && yarn lint:scripts && yarn format:check",
"lint:fix": "yarn lint:styles --fix && yarn lint:scripts --fix && yarn format",
"validate": "jest \"validate-build/*\" --config jest.config.validate-build.js"
},
"jest": {
"preset": "arui-scripts",
"setupFiles": [
"<rootDir>/__tests__/setup.js"
]
},
"dependencies": {
"@alfalab/core-components": "^42.1.0",
"@alfalab/scripts-modules": "workspace:*",
"@alfalab/scripts-server": "workspace:*",
"@hapi/hapi": "^21.3.2",
"arui-scripts": "workspace:*",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"express": "^4.20.0",
"lodash": "^4.18.1",
"react": "18.3.1",
"react-compiler-runtime": "^1.0.0",
"react-dom": "18.3.1"
},
"devDependencies": {
"@types/enzyme": "^3.10.13",
"@types/express": "^4.17.17",
"@types/jest": "^23.3.14",
"@types/lodash": "^4.14.197",
"@types/node": "^14.18.54",
"@types/react": "18.3.24",
"@types/react-dom": "18.3.7",
"@types/webpack-env": "^1.18.1",
"jest": "28.1.3",
"postcss-preset-env": "^8.4.1",
"ts-jest": "28.0.8",
"typescript": "^4.9.5"
}
}