This repository was archived by the owner on Jan 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
76 lines (76 loc) · 2.2 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
76
{
"name": "lino_react",
"version": "1.0.0",
"description": "Alternative front end for the Lino framework using FaceBook's React js Frameowrk",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"debug": "webpack --mode none ",
"dev": "webpack --mode development",
"build": "webpack --mode production",
"build_css": "node_modules/node-sass-chokidar/bin/node-sass-chokidar ./lino_react/react/components/layout -o ./lino_react/react/components/layout",
"cy:open": "./node_modules/.bin/cypress open",
"cy:run": "./node_modules/.bin/cypress run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lino-framework/react.git"
},
"browsers": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 9"
],
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lino-framework/react/issues"
},
"homepage": "https://github.com/lino-framework/react#readme",
"devDependencies": {
"@babel/core": "^7.13.1",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.5",
"@babel/preset-react": "^7.12.13",
"autoprefixer": "^10.2.4",
"babel-loader": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"css-loader": "^5.1.0",
"cypress": "^6.5.0",
"file-loader": "^6.2.0",
"node-sass": "^5.0.0",
"node-sass-chokidar": "^1.5.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^4.0.0",
"primeflex": "^2.0.0",
"prop-types": "^15.7.2",
"query-string": "^6.14.0",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"weak-key": "^1.0.2",
"webpack": "^4",
"webpack-cli": "^4",
"whatwg-fetch": "^3.6.1"
},
"dependencies": {
"abort-controller": "^3.0.0",
"classnames": "^2.2.6",
"lodash": "^4.17.21",
"primeicons": "^4.1.0",
"primereact": "latest",
"quill": "^1.3.7",
"quill-mention": "^3.0.2",
"rc-collapse": "^3.1.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-transition-group": "^4.4.1",
"reconnecting-websocket": "^4.4.0"
}
}