This repository has been archived by the owner on Sep 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
63 lines (63 loc) · 2.12 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
{
"name": "reaction-file-collections",
"version": "0.0.0-development",
"description": "A way to manage file uploads, downloads, and transformed copies in Node/Web apps. Used by Reaction Commerce.",
"author": "Reaction Commerce (https://reactioncommerce.com/)",
"license": "MIT",
"eslintConfig": {
"extends": "@reactioncommerce",
"rules": {
"node/no-unsupported-features/es-syntax": "off"
},
"settings": {
"react": {
"version": "16.20.0"
}
}
},
"scripts": {
"lint": "eslint .",
"build": "lerna run build",
"bootstrap": "lerna bootstrap && lerna run build",
"clean": "lerna clean --yes",
"start": "cd example-apps/meteor-blaze-app && npm i && npm start",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-proposal-export-namespace-from": "^7.10.4",
"@babel/plugin-proposal-function-sent": "^7.10.4",
"@babel/plugin-proposal-json-strings": "^7.10.4",
"@babel/plugin-proposal-numeric-separator": "^7.10.4",
"@babel/plugin-proposal-throw-expressions": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@reactioncommerce/eslint-config": "^2.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"jest": "^26.1.0",
"jest-cli": "^26.1.0",
"lerna": "^3.22.1"
},
"dependencies": {
"@babel/runtime-corejs2": "^7.16.0",
"@babel/runtime-corejs3": "^7.16.3",
"query-string": "6.14.1"
}
}