-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2 KB
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
{
"name": "build-your-own-radar",
"version": "0.3.0",
"description": "",
"main": "index.js",
"scripts": {
"parse": "node parser.js",
"watchparse": "chokidar \"parser.js\" \"items/**/*.txt\" -c \"npm run parse\"",
"build": "webpack --mode production --config webpack.prod.js",
"dev-server": "webpack-dev-server --mode development --config webpack.dev.js",
"dev": "npm-run-all --parallel watchparse dev-server",
"lint-prettier:check": "eslint . && prettier --check .",
"lint-prettier:fix": "eslint . --fix && prettier --write .",
"copy-output": "node copyOutput.js",
"prepare": "husky install"
},
"author": "Thoughtworks",
"repository": {
"type": "git",
"url": "https://github.com/thoughtworks/build-your-own-radar"
},
"keywords": [
"tech-radar"
],
"license": "AGPL-3.0",
"devDependencies": {
"@babel/core": "^7.22.15",
"@babel/preset-env": "^7.22.15",
"babel-loader": "^9.1.3",
"chokidar-cli": "^3.0.0",
"css-loader": "^6.8.1",
"cssnano": "^6.0.1",
"csv-loader": "^3.0.5",
"dotenv": "^16.3.1",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"expose-loader": "^4.1.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"mini-css-extract-plugin": "^2.7.6",
"npm-run-all": "^4.1.5",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^9.1.3",
"prettier": "^3.0.3",
"sass": "^1.66.1",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"yargs": "^17.7.2"
},
"dependencies": {
"chance": "^1.1.11",
"d3": "^7.8.5",
"d3-tip": "^0.9.1",
"fs-extra": "^11.1.1",
"jquery": "^3.7.1",
"jquery-ui": "^1.13.2",
"lodash": "^4.17.21",
"papaparse": "^5.4.1",
"sanitize-html": "^2.11.0"
},
"standard": {
"globals": [
"XMLHttpRequest"
]
},
"engines": {
"node": ">=18",
"npm": "~10.0.0"
},
"private": true
}