-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
90 lines (90 loc) · 2.19 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
{
"name": "nlp-editor",
"version": "0.1.0",
"private": true,
"dependencies": {
"@carbon/icons-react": "10.44.0",
"@elyra/canvas": "12.12.3",
"@reduxjs/toolkit": "^1.7.2",
"adm-zip": "^0.5.9",
"axios": "^0.26.0",
"carbon-components": "^10.52.0",
"carbon-components-react": "^7.50.0",
"carbon-icons": "^7.0.7",
"classnames": "^2.3.1",
"cors": "^2.8.5",
"csv-parse": "^5.3.0",
"express": "^4.17.2",
"express-fileupload": "^1.3.1",
"express-rate-limit": "^6.5.2",
"express-validator": "^6.14.2",
"helmet": "^6.0.1",
"husky": "^2.3.0",
"js-file-download": "^0.4.12",
"js2xmlparser": "^4.0.2",
"lint-staged": "^9.5.0",
"path": "^0.12.7",
"prop-types": "^15.8.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-intl": "^5.24.6",
"react-redux": "^7.2.6",
"react-scripts": "5.0.0",
"sanitize-filename": "^1.6.3",
"sass": "^1.49.7",
"short-uuid": "^4.2.0",
"url": "^0.11.0",
"xss-filters": "^1.2.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"format": "prettier --write './src/**/*.{js,jsx}'",
"format:check": "prettier --check './src/**/*.{js,jsx}'",
"serve": "node server.js",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"http-proxy-middleware": "^2.0.3",
"minimatch": "^3.0.5",
"nth-check": "^2.0.1",
"prettier": "^2.5.1"
},
"overrides": {
"recursive-readdir": {
"minimatch": "$minimatch"
},
"css-select": {
"nth-check": "$nth-check"
}
}
}