-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.58 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
{
"name": "yashdalfthegray.github.io",
"version": "1.0.0",
"description": "There are many like it but this one is mine",
"main": "dist/index.js",
"scripts": {
"dev-build": "webpack --mode=development",
"watch-build": "webpack --mode=development --watch",
"prod-build": "webpack --mode=production",
"server": "http-server ./ -p 8000",
"linter": "tslint src/**/*.ts",
"linter-fix": "tslint --fix src/**/*.ts",
"start": "concurrently -c cyan,green \"npm:watch-build\" \"npm:server\"",
"clean": "npx rimraf dist",
"autoprefixer-info": "npx autoprefixer --info",
"show-stats": "npx open ./dist/artifacts/stats.html",
"show-prod-website": "npx open ./index.html",
"test": "npm run local-integ-tests",
"local-integ-tests": "WEBSITE_URL=http://127.0.0.1:8000 ava",
"prod-integ-tests": "WEBSITE_URL=https://yashkulshrestha.com ava",
"update-snapshots": "WEBSITE_URL=http://127.0.0.1:8000 ava --update-snapshots"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yashdalfthegray/yashdalfthegray.github.io.git"
},
"author": "Yash Kulshrestha",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/yashdalfthegray/yashdalfthegray.github.io/issues"
},
"homepage": "https://github.com/yashdalfthegray/yashdalfthegray.github.io#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": [
"prettier --write"
]
},
"devDependencies": {
"@types/uuid": "^8.3.1",
"autoprefixer": "^10.2.4",
"ava": "^4.0.1",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^7.0.0",
"css-loader": "^6.4.0",
"css-minimizer-webpack-plugin": "^3.1.1",
"cssnano": "^5.0.8",
"http-server": "^14.1.0",
"husky": "^7.0.2",
"lint-staged": "^12.3.1",
"mini-css-extract-plugin": "^2.4.2",
"postcss": "^8.2.6",
"postcss-loader": "^6.1.1",
"prettier": "^2.2.1",
"puppeteer": "^13.1.1",
"sass": "^1.32.7",
"sass-loader": "^12.1.0",
"svg-inline-loader": "^0.8.2",
"terser-webpack-plugin": "^5.2.4",
"ts-loader": "^9.2.6",
"ts-node": "^10.3.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.1.5",
"uuid": "^8.3.2",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0",
"webpack-visualizer-plugin2": "^1.0.0"
},
"ava": {
"extensions": [
"ts"
],
"files": [
"test/*.spec.ts"
],
"require": [
"ts-node/register"
],
"snapshotDir": "artifacts/snapshots"
}
}