This repository has been archived by the owner on Apr 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.96 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
{
"name": "social-web-example",
"version": "0.1.0",
"dependencies": {
"@amplica-labs/siwf": "file:vendor/amplica-labs-siwf-0.1.0.tgz",
"@ant-design/icons": "^5.3.1",
"@dsnp/activity-content": "^1.1.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@types/react": "^18.2.70",
"@types/react-dom": "^18.2.22",
"@typoas/cli": "3.1.5",
"@typoas/runtime": "3.1.7",
"antd": "^5.15.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-testing-library": "^6.2.0",
"minidenticons": "^4.2.1",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-anchorme": "^4.0.1",
"react-dom": "^18.2.0",
"react-player": "^2.15.1",
"react-scripts": "5.0.1",
"stylelint": "^16.3.0",
"stylelint-config-standard": "^36.0.0",
"typescript": "^4"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"eslint": "^8.57.0",
"typescript-eslint": "^7.3.1"
},
"scripts": {
"start": "DISABLE_ESLINT_PLUGIN=true react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "npm-run-all -c lint:*",
"lint:eslint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:stylelint": "stylelint src/**/*.css",
"format": "npm run lint:eslint -- --fix && npm run lint:stylelint -- --fix ",
"gen:client": "npx @typoas/cli generate -i dsnplink.json -o src/dsnpLink.ts"
},
"eslintConfig": {
"extends": ["react-app", "react-app/jest"]
},
"browserslist": {
"production": ["last 1 chrome version", "last 1 firefox version", "last 1 safari version"],
"development": ["last 1 chrome version", "last 1 firefox version", "last 1 safari version"]
}
}