forked from kgram/react-equation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.07 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
64
65
66
67
68
69
70
71
{
"name": "react-equation",
"version": "1.0.0",
"description": "A react renderer for ASTs generated by equation-parser/equation-resolver",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/kgram/react-equation.git"
},
"homepage": "https://github.com/kgram/react-equation",
"author": "Kristoffer Gram <[email protected]>",
"license": "MIT",
"scripts": {
"storybook": "start-storybook -p 9001 -c storybook",
"test": "echo No testing added",
"lint": "eslint \"src/**/*.{ts,tsx}\" rollup.config.js",
"types": "tsc -d --emitDeclarationOnly --outDir dist",
"bundle": "rollup -c rollup.config.js",
"prepare": "rimraf dist && yarn lint && yarn test && yarn types && yarn bundle"
},
"files": [
"dist"
],
"dependencies": {
"equation-parser": "^1.0.0",
"equation-resolver": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@storybook/addon-actions": "^6.5.9",
"@storybook/react": "^6.5.9",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@typescript-eslint/eslint-plugin": "^5.30.3",
"@typescript-eslint/parser": "^5.30.3",
"babel-loader": "^8.2.5",
"eslint": "^8.19.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"rimraf": "^3.0.0",
"rollup": "^2.75.7",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-multi-input": "^1.3.1",
"rollup-plugin-node-resolve": "^5.2.0",
"typescript": "^4.7.4",
"webpack": "^5.73.0"
},
"peerDependencies": {
"react": "~16.8.0"
},
"babel": {
"presets": [
"@babel/typescript",
"@babel/env",
"@babel/react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
}