-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.32 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
{
"name": "degree-calc",
"version": "0.4.0",
"description": "Clock hands degree calculator",
"private": true,
"scripts": {
"start": "npm run build && http-server ./dist",
"start:dev": "webpack-dev-server --open",
"build": "webpack",
"tsc:watch": "tsc --watch",
"sass:watch-web-comp": "sass --watch src/app/sass/webcomponents/:src/app/css/webcomponents --style compressed",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"js",
"es6",
"typescript",
"sass",
"webcomponents"
],
"author": "Georgi Gavrilenko <georgi.gavrilenko.gmail.com>",
"license": "MIT",
"nodemonConfig": {
"ignore": [
"test/*",
"docs/*"
],
"delay": "500"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.2",
"css-loader": "^3.5.3",
"eslint": "^7.2.0",
"file-loader": "^6.0.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.0.1",
"sass": "^1.26.7",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"ts-jest": "^26.0.0",
"ts-loader": "^7.0.5",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"workbox-webpack-plugin": "^5.1.3"
}
}