This repository was archived by the owner on May 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.37 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
{
"name": "roster-creator",
"version": "1.0.0",
"private": true,
"description": "Back- and Frontend for the application to create a roster.",
"main": "server.js",
"dependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.0",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@vaadin/router": "^1.7.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-template-html-minifier": "^4.1.0",
"css-loader": "^4.2.0",
"d3": "^5.16.0",
"eslint": "^7.6.0",
"eslint-plugin-jest": "^23.20.0",
"file-loader": "^6.0.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"jest": "^26.2.2",
"lit-element": "^2.3.1",
"nanoid": "^3.1.12",
"node-sass": "^4.14.1",
"nodemon": "^2.0.4",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"sass-loader": "^9.0.2",
"style-loader": "^1.2.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.1"
},
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js --history-api-fallback --open",
"build": "webpack --config webpack.prod.js",
"test": "jest --watch",
"node": "nodemon"
},
"author": "Philip Trauth",
"license": "ISC"
}