-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.44 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
{
"name": "@themost/react",
"version": "2.13.0",
"description": "MOST Web Framework React Client",
"author": "",
"license": "BSD-3-Clause",
"repository": "https://github.com/themost-framework/themost-react.git",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"source": "src/index.tsx",
"types": "dist/index.d.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "rimraf dist && rollup -c ./rollup.config.js",
"test": "react-scripts test",
"test:debug": "react-scripts --inspect test --runInBand --no-cache",
"start:api": "IP=0.0.0.0 PORT=4000 node ./node_modules/@themost/test/dist/server/standalone",
"pm2": "pm2",
"pm2:api": "IP=0.0.0.0 PORT=4000 npm run pm2 start ./node_modules/@themost/test/dist/server/standalone.js"
},
"peerDependencies": {
"react": "^16 || ^17 || ^18"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-typescript": "^11.0.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@themost/common": "^2.5.12",
"@themost/data": "^2.10.2",
"@themost/express": "^1.6.1",
"@themost/query": "^2.9.12",
"@themost/sqlite": "^2.6.14",
"@themost/test": "^2.3.0",
"@types/jest": "^25.1.4",
"@types/node": "^12.12.38",
"@types/react": "^16.9.27",
"@types/react-dom": "^16.9.7",
"@types/react-router": "^5.1.13",
"@types/react-router-dom": "^5.1.7",
"@types/superagent": "^8.1.1",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"@typescript-eslint/typescript-estree": "^4.21.0",
"babel-eslint": "^10.0.3",
"bootstrap": "^4.6.0",
"cross-env": "^7.0.2",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-standard": "^4.0.1",
"http-proxy-middleware": "^1.2.0",
"pm2": "^5.3.0",
"react": "^16.0.0",
"react-bootstrap": "^1.5.2",
"react-dom": "^16.0.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^5.0.1",
"rimraf": "^4.1.2",
"rollup": "^3.17.2",
"typescript": "^4.9.5"
},
"dependencies": {
"@themost/client": "^2.13.0"
}
}