forked from mrblueblue/legendables
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.56 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
{
"name": "legendables",
"version": "1.0.0-rc.6",
"description": "declarative legend",
"main": "index.js",
"scripts": {
"build": "tsc; npm run build:styles",
"build:styles": "node-sass -- src/styles.scss src/styles.css",
"build:umd": "rollup -c -i index.ts -o dist/legendables.js",
"build:umd:min": "NODE_ENV=production rollup -c -i index.ts -o dist/legendables.min.js",
"prepublish": "npm run build",
"start": "webpack-dev-server --content-base ./example --config ./example/webpack.config.js",
"watch": "tsc --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Jonathan Huang <[email protected]>",
"license": "MIT",
"dependencies": {
"@types/node": "^11.13.0",
"d3-dispatch": "^1.0.3",
"d3-format": "^1.2.0",
"snabbdom": "0.7.2"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-env": "^7.24.8",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-sucrase": "^3.1.0",
"@rollup/plugin-typescript": "^5.0.2",
"@types/d3": "^4.10.0",
"css-loader": "^0.28.7",
"node-sass": "^4.12.0",
"prettier": "^1.7.0",
"rollup": "^2.70.1",
"rollup-plugin-terser": "^7.0.2",
"style-loader": "^0.18.2",
"ts-loader": "^2.3.7",
"tslib": "^1.10.0",
"typescript": "^3.4.0",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.8.2"
}
}