-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.71 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
{
"name": "@curvenote/runtime",
"version": "0.2.9",
"description": "Runtime for @curvenote/components, evaluate a reactive state for components.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"explorable explanations",
"web components",
"writing",
"redux"
],
"files": [
"dist"
],
"author": "rowanc1",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/curvenote/runtime.git"
},
"bugs": {
"url": "https://github.com/curvenote/runtime/issues"
},
"homepage": "https://curvenote.dev/runtime",
"scripts": {
"test": "jest",
"lint": "eslint \"src/**/*.ts\" -c .eslintrc.json",
"lint:format": "prettier --check \"src/**/*.ts\"",
"lint:format:fix": "prettier --write \"src/**/*.ts\"",
"clean": "rm -rf dist",
"build": "tsc",
"prepublishOnly": "yarn run clean; yarn run build;"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/lodash.isequal": "^4.5.5",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"eslint": "^7.29.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.5",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4"
},
"dependencies": {
"lodash.isequal": "^4.5.0",
"redux": "^4.1.0",
"redux-thunk": "^2.3.0",
"uuid": "^8.3.2"
},
"sideEffects": false
}