forked from reactioncommerce/reaction-file-collections
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.89 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
{
"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"
}
},
"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.6.2",
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-proposal-function-sent": "^7.5.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@reactioncommerce/eslint-config": "^2.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "^6.4.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"lerna": "^3.16.4"
}
}