-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
33 lines (33 loc) · 1.02 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
{
"name": "looker-force-directed-graph",
"version": "1.0.0",
"license": "MIT",
"author": "Josh Rosen <[email protected]>",
"private": true,
"scripts": {
"build": "webpack --config webpack.config.js",
"build:legacy": "env NODE_OPTIONS='--openssl-legacy-provider' webpack --config webpack.config.js",
"watch": "webpack --config webpack.config.js --watch --progress",
"lint": "tslint --project tsconfig.json --format stylish 'src/**/*.ts'",
"lint-fix": "tslint --fix --project tsconfig.json --format stylish 'src/**/*.ts'"
},
"devDependencies": {
"d3": "^5.8.2",
"pivottable": "2.23.0",
"prettier": "^2.2.1",
"ts-loader": "^4.5.0",
"tslint": "5.8.0",
"tslint-config-standard": "7.0.0",
"typescript": "^5.1.6",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "5.0.4"
},
"dependencies": {
"@types/d3": "^5.0.0",
"d3-svg-legend": "^2.25.6",
"lodash.isequal": "^4.5.0",
"ssf": "^0.11.2"
}
}