-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.29 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.29 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
{
"name": "timetable",
"version": "1.0.0",
"description": "Timetable project for my uni.",
"private": true,
"scripts": {
"check-types": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"**/*.js\"",
"fix": "eslint \"**/*.js\" --fix",
"build": "webpack"
},
"author": "MobButcher",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-env": "^7.3.1",
"@babel/preset-typescript": "^7.12.7",
"@types/luxon": "^1.25.1",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"html-webpack-plugin": "^4.5.1",
"source-map-loader": "^2.0.0",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.14",
"typings-for-css-modules-loader": "^1.7.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"luxon": "^1.25.0"
}
}