-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
47 lines (47 loc) · 1.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
{
"name": "example-modules",
"version": "1.1.52",
"private": true,
"scripts": {
"build:app": "arui-scripts build",
"start": "NODE_ENV=localhost arui-scripts start",
"validate": "jest \"validate-build/*\" --config jest.config.validate-build.js",
"lint:css": "stylelint ./src/**/*.css",
"lint:scripts": "eslint \"**/*.{js,jsx,ts,tsx}\" --ext .js,.jsx,.ts,.tsx",
"lint": "yarn lint:css && yarn lint:scripts",
"lint:fix": "yarn lint:css --fix && yarn lint:scripts --fix",
"format": "prettier --write $INIT_CWD/{config,src}/**/*.{ts,tsx,js,jsx,css}"
},
"jest": {
"preset": "arui-scripts"
},
"dependencies": {
"@alfalab/scripts-modules": "workspace:*",
"@alfalab/scripts-server": "workspace:*",
"arui-scripts": "workspace:*",
"body-parser": "^1.20.3",
"express": "^4.20.0",
"lodash": "^4.17.21",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"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": "17.0.64",
"@types/react-dom": "17.0.20",
"@types/webpack-env": "^1.18.1",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"eslint": "^8.20.0",
"eslint-config-custom": "workspace:*",
"jest": "28.1.3",
"prettier": "^2.7.1",
"stylelint": "^14.9.1",
"ts-jest": "28.0.8",
"typescript": "^4.9.5"
}
}