-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.99 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
{
"name": "flight-webapp-components",
"version": "1.0.1",
"description": "React component library for use with OpenflightHPC web suite applications.",
"files": [
"dist",
"es",
"lib",
"src",
"yarn.lock"
],
"main": "lib/index.js",
"module": "es/index.js",
"repository": "https://github.com/openflighthpc/flight-webapp-components",
"scripts": {
"build": "yarn run build:cjs && yarn run build:esm",
"build:cjs": "babel --config-file ./babel.config.cjs.json src -d lib",
"build:cjs:watch": "babel --config-file ./babel.config.cjs.json src -w -d lib",
"build:esm": "babel --config-file ./babel.config.esm.json src -d es",
"build:esm:watch": "babel --config-file ./babel.config.esm.json src -w -d es",
"clean": "rm -rf lib es",
"lint": "eslint src; exit 0",
"prepublishOnly": "yarn run build"
},
"author": "Ben Armston <ben.armston@alces-software.com>",
"license": "EPL-2.0",
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.1",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.13.0",
"@babel/preset-env": "^7.13.5",
"@babel/preset-react": "^7.12.13",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"babel-eslint": "^10.0.0",
"babel-plugin-css-modules-transform": "^1.6.2",
"eslint": "^7.5.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"use-http": "^1.0.21"
},
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1",
"use-http": "^1.0.21"
},
"dependencies": {
"classnames": "^2.2.6",
"js-gravatar": "^1.1.3",
"react-hook-form": "^6.15.4",
"react-transition-group": "^4.4.1",
"reactstrap": "^8.9.0"
}
}