-
-
Notifications
You must be signed in to change notification settings - Fork 152
/
package.json
81 lines (81 loc) · 2.69 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
{
"name": "organice",
"version": "0.2.0",
"private": true,
"engines": {
"node": "^20.17.0"
},
"resolutions": {
"@babel/core": "^7.16.0"
},
"dependencies": {
"@bity/oauth2-auth-code-pkce": "^2.13.0",
"aos": "^2.3.4",
"bowser": "^2.11.0",
"classnames": "^2.2.6",
"date-fns": "^2.16.1",
"dotenv": "^8.2.0",
"dropbox": "10.31.0",
"immutable": "^3.8.2",
"lodash": "^4.17.21",
"pegjs": "^0.10.0",
"react": "16.10.0",
"react-beautiful-dnd": "^13.0.0",
"react-collapse": "^4.0.3",
"react-dom": "^16.7.0-alpha.0",
"react-feather": "^2.0.10",
"react-hotkeys": "^2.0.0",
"react-motion": "^0.5.2",
"react-redux": "^7.2.1",
"react-router-dom": "5.2.0",
"react-scripts": "4.0.3",
"redux": "^4.1.0",
"redux-thunk": "^2.3.0",
"redux-undo": "1.1.0",
"sass": "1.45.0",
"webdav": "^3.3.0"
},
"scripts": {
"start": "./bin/compile_search_parser.sh && yarn run compile-sass && react-scripts --openssl-legacy-provider start",
"compile-sass": "./bin/compile_sass.sh",
"build": "./bin/compile_search_parser.sh && yarn run compile-sass && react-scripts --openssl-legacy-provider build",
"test:dbg": "./bin/compile_search_parser.sh && yarn run compile-sass && react-scripts --inspect-brk test --runInBand --no-cache",
"test": "./bin/compile_search_parser.sh && yarn run compile-sass && react-scripts test --env=jsdom",
"coverage": "./bin/compile_search_parser.sh && yarn run compile-sass && react-scripts test --env=jsdom --coverage --watchAll=false",
"eslint": "./node_modules/.bin/eslint --cache .",
"nibble": "./node_modules/.bin/eslint-nibble --cache .",
"prettier": "./node_modules/.bin/prettier \"**/*.js\"",
"prettier-eslint": "./node_modules/.bin/prettier-eslint \"`pwd`/**/*.js\"",
"lint": "yarn eslint && yarn prettier-eslint --list-different",
"eject": "react-scripts eject",
"postinstall": "if [ \"$ON_HEROKU\" ]; then npm install -g serve; fi"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "12.0.0",
"babel-eslint": "^10.1.0",
"eslint": "7.12.0",
"eslint-nibble": "^6.1.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-redux": "4.0.0",
"prettier": "^2.0.5",
"prettier-eslint": "^11.0.0",
"prettier-eslint-cli": "^5.0.1",
"raw.macro": "0.4.2",
"react-test-renderer": "^17.0.1"
},
"jest": {
"coverageReporters": [
"text"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}