-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.36 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "unitrad-ui",
"version": "1.11.0",
"description": "Standard web interface for the Library federated catalog.",
"main": "index.html",
"scripts": {
"flow": "flow",
"start": "gulp debug --conf=./conf/",
"release": "gulp release",
"test": "mocha --require @babel/register",
"test-with-browser": "gulp test",
"preinstall": "npx npm-force-resolutions"
},
"directories": {
"test": "test"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-flow-strip-types": "^7.22.5",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@babel/register": "^7.22.15",
"autoprefixer": "^10.4.16",
"babel-eslint": "^10.1.0",
"babelify": "^10.0.0",
"browser-sync": "^2.29.3",
"browserify": "^17.0.0",
"bundle-collapser": "^1.4.0",
"chai": "^4.3.10",
"cssnano": "^6.0.1",
"ejs": "^3.1.10",
"eslint": "^8.53.0",
"eslint-plugin-flowtype": "^8.0.3",
"flow-bin": "^0.220.1",
"gulp": "^5.0.0",
"gulp-concat": "^2.6.1",
"gulp-ejs": "^5.1.0",
"gulp-header": "^2.0.9",
"gulp-postcss": "^9.0.1",
"gulp-replace": "^1.1.4",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-terser": "^2.1.0",
"licensify": "^3.1.3",
"mocha": "^10.2.0",
"mocha-junit-reporter": "^2.2.1",
"postcss": "^8.4.31",
"sass": "^1.69.5",
"through2": "^4.0.2",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CALIL/unitrad-ui"
},
"author": "CALIL Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/CALIL/unitrad-ui/issues"
},
"homepage": "https://github.com/CALIL/unitrad-ui#readme",
"dependencies": {
"core-js": "^3.33.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-paginate": "8.2.0",
"superagent": "8.1.2"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"plugins": [
"node",
"react",
"flowtype"
],
"ecmaFeatures": {
"jsx": true,
"modules": true
},
"parser": "babel-eslint",
"env": {
"node": true,
"browser": true
}
},
"resolutions": {
"glob-stream": "7.0.0"
},
"engines": {
"node": ">=18"
}
}