This repository has been archived by the owner on Feb 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.93 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": "hyperion-framework",
"version": "1.0.0",
"main": "dist/hyperion-framework.js",
"umd:main": "dist/hyperion-framework.umd.js",
"module": "dist/hyperion-framework.mjs",
"source": "src/index.ts",
"author": "Stephen Fraser <[email protected]>",
"license": "MIT",
"scripts": {
"build": "lerna run build",
"start": "lerna run start --parallel --stream --concurrency=100",
"test-types": "typings-tester --dir types-tests",
"release": "fesk-release",
"test": "NODE_ENV=test jest --verbose --coverage"
},
"devDependencies": {
"@ampproject/rollup-plugin-closure-compiler": "^0.26.0",
"@fesk/eslint-config-standard": "1.4.0-pr.b6dc2fa3",
"@fesk/module-release": "^0.0.3",
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"@rollup/plugin-typescript": "^4.1.2",
"@types/ajv": "^1.0.0",
"@types/jest": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"ajv": "^6.12.2",
"babel-eslint": "^10.0.1",
"dtslint": "^3.4.1",
"eslint": "^5.15.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.0.1",
"jest-fetch-mock": "^2.1.2",
"lerna": "^3.19.0",
"prettier": "^1.15.3",
"rollup": "^2.13.1",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-visualizer": "^4.0.4",
"ts-jest": "^26.1.0",
"ts-loader": "^7.0.5",
"tslib": "^2.0.0",
"typescript": "^3.9.5",
"typings-tester": "^0.3.2",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"private": true,
"workspaces": [
"packages/*"
]
}