-
-
Notifications
You must be signed in to change notification settings - Fork 165
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.95 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.95 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"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",
"@fortawesome/fontawesome-free": "5.1.1",
"@parcel/service-worker": "^2.14.4",
"bootstrap": "5.0.2",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"aos": "^2.3.4",
"bowser": "^2.11.0",
"buffer": "^5.5.0||^6.0.0",
"classnames": "^2.2.6",
"date-fns": "^2.16.1",
"dotenv": "^8.2.0",
"dropbox": "10.31.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react-hooks": "^4.0.8",
"immutable": "^3.8.2",
"lodash": "^4.17.21",
"parcel": "^2.14.4",
"peggy": "^5.0.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",
"redux": "^4.1.0",
"redux-thunk": "^2.3.0",
"redux-undo": "1.1.0",
"webdav": "^3.3.0"
},
"scripts": {
"start": "./bin/compile_search_parser.sh && parcel --host 0.0.0.0 --port 3000",
"clean": "rm -rf .parcel-cache",
"compile-sass": "parcel build src/components/Landing/vendor_css/template.scss",
"build": "./bin/compile_search_parser.sh && parcel build",
"test": "./bin/compile_search_parser.sh && jest --env=jsdom",
"watch": "./bin/compile_search_parser.sh && jest --watch --env=jsdom",
"coverage": "./bin/compile_search_parser.sh && jest --env=jsdom --coverage --watchAll=false",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:headed": "playwright test --headed",
"test:e2e:report": "playwright show-report",
"test:e2e:auth": "playwright test --project=chromium-authenticated",
"test:all": "yarn test && yarn test:e2e",
"ci": "yarn eslint && yarn prettier-eslint --list-different && yarn test",
"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": "eslint src",
"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",
"@parcel/packager-raw-url": "2.14.4",
"@parcel/transformer-inline-string": "2.14.4",
"@parcel/transformer-sass": "^2.14.4",
"@parcel/transformer-webmanifest": "2.14.4",
"@playwright/test": "^1.57.0",
"@testing-library/jest-dom": "^6.1.0",
"@testing-library/react": "^12.0.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.7.0",
"babel-preset-react-app": "^10.0.0",
"crypto-browserify": "^3.12.0",
"eslint": "^7.11.0",
"eslint-config-react-app": "^6.0.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",
"events": "^3.1.0",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest-circus": "29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-watch-typeahead": "2.2.2",
"path-browserify": "^1.0.0",
"prettier": "^2.0.5",
"prettier-eslint": "^11.0.0",
"prettier-eslint-cli": "^5.0.1",
"process": "^0.11.10",
"react-test-renderer": "^17.0.1",
"stream-browserify": "^3.0.0",
"svgo": "^3",
"util": "^0.12.3",
"vm-browserify": "^1.1.2"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"source": "public/index.html"
}