-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.6 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@curvenote/components",
"version": "0.3.4",
"description": "Web components for interactive scientific writing, reactive documents and explorable explanations.",
"main": "dist/index.js",
"unpkg": "dist/curvenote.min.js",
"types": "dist/index.d.ts",
"keywords": [
"explorable explanations",
"web components",
"writing"
],
"files": [
"dist"
],
"author": "rowanc1",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/curvenote/components.git"
},
"bugs": {
"url": "https://github.com/curvenote/components/issues"
},
"homepage": "https://curvenote.dev/components",
"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",
"link": "yarn unlink; yarn link; yarn link @curvenote/runtime",
"start": "webpack serve --config webpack.dev.js",
"build-dev": "webpack --config webpack.dev.js",
"build": "webpack --config webpack.prod.js; tsc; cp src/index.css dist/curvenote.css; rm -rf dist/src",
"prepublishOnly": "yarn run clean; yarn run build;"
},
"dependencies": {
"@curvenote/runtime": "^0.2.8",
"d3-drag": "^3.0.0",
"d3-format": "^3.1.0",
"d3-selection": "^3.0.0",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1",
"lodash.throttle": "^4.1.1",
"redux": "^4.1.2",
"redux-thunk": "^2.4.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/d3-drag": "^3.0.1",
"@types/d3-format": "^3.0.1",
"@types/d3-selection": "^3.0.2",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.178",
"@types/lodash.throttle": "^4.1.6",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.2.6",
"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",
"express": "^4.17.3",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webpack": "^5.40.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
},
"sideEffects": false
}