-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
106 lines (106 loc) · 3.55 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "lineup_app",
"description": "LineUp demo application to explore datasets",
"homepage": "https://github.com/lineupjs/lineup_app",
"version": "4.6.0",
"author": {
"name": "Samuel Gratzl",
"email": "[email protected]",
"url": "https://www.sgratzl.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/lineupjs/lineup_app/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/lineupjs/lineup_app.git"
},
"private": true,
"scripts": {
"clean": "rimraf build dist docs \"*.tgz\"",
"compile": "tsc",
"compile:dev": "tsc -p ./tsconfig.dev.json",
"fix": "yarn run eslint:fix && yarn run prettier:write && yarn run stylelint:fix",
"prettier:write": "prettier \"*\" \"*/**\" --write",
"prettier": "prettier \"*\" \"*/**\" --check",
"eslint": "eslint src --ext .ts,.tsx",
"eslint:fix": "yarn run eslint --fix",
"stylelint": "stylelint \"src/**/*.scss\"",
"stylelint:fix": "yarn run stylelint --fix",
"lint": "yarn run eslint && yarn run prettier && yarn run stylelint",
"build:dev": "webpack build --mode development --devtool source-map",
"build": "webpack build --mode production --devtool source-map",
"dev": "yarn run clean && yarn run compile:dev && yarn run build:dev",
"watch": "webpack --mode development --watch --devtool source-map",
"start": "webpack serve --mode development --devtool source-map",
"prepare": "echo 'dummy prepare since prepack has no dev dependencies'",
"prepack": "yarn run clean && yarn run compile && yarn run build"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/lodash": "4.14.182",
"@types/node": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"@yarnpkg/sdks": "^3.0.0-rc.14",
"css-loader": "^6.7.1",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"extract-loader": "^5.1.0",
"file-loader": "^6.2.0",
"font-awesome": "^4.7.0",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.3",
"mini-css-extract-plugin": "^2.6.1",
"mkdirp": "^1.0.4",
"mocha-junit-reporter": "^2.0.2",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"raw-loader": "^4.0.2",
"rimraf": "^3.0.2",
"sass": "^1.53.0",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"stylelint": "^14.9.1",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard-scss": "^5.0.0",
"stylelint-prettier": "^2.0.0",
"stylelint-scss": "^4.3.0",
"thread-loader": "^3.0.4",
"ts-jest": "^28.0.7",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3",
"workbox-webpack-plugin": "^6.5.3"
},
"dependencies": {
"@types/lz-string": "^1.3.34",
"@types/materialize-css": "^1.0.11",
"@types/papaparse": "^5.3.2",
"dexie": "^3.2.2",
"font-awesome": "^4.7.0",
"lineupjs": "^4.6.2",
"lz-string": "^1.4.4",
"material-design-icons": "^3.0.1",
"materialize-css": "^1.0.0",
"papaparse": "^5.3.2",
"typeface-roboto": "^1.1.13"
},
"dependenciesMeta": {
"[email protected]": {
"unplugged": true
}
},
"packageManager": "[email protected]"
}