-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.59 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": "github_portal",
"version": "0.0.999",
"description": "my static portal",
"main": "index.js",
"scripts": {
"build": "webpack",
"build_min": "NODE_ENV=production webpack -p",
"server": "webpack-dev-server --open --inline",
"typecheck": "tsc --noEmit",
"lint": " eslint --ext .ts src/",
"postinstall": "is-ci || npx husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AStaroverov/AStaroverov.github.io.git"
},
"author": "AStaroverov",
"license": "MIT",
"bugs": {
"url": "https://github.com/AStaroverov/AStaroverov.github.io/issues"
},
"homepage": "https://github.com/AStaroverov/AStaroverov.github.io#readme",
"dependencies": {
"@types/gl-matrix": "^3.2.0",
"eventemitter3": "^4.0.7",
"gl-matrix": "^3.3.0",
"gsap": "^3.5.1",
"rbush": "^3.0.1",
"ts-deferred": "^1.0.4",
"ts-loader": "^8.0.7",
"typescript": "^4.0.2",
"webpack": "^5.3.0",
"webpack-cli": "3",
"webpack-dev-server": "^3.11.0"
},
"devDependencies": {
"@types/eventemitter3": "^2.0.2",
"@types/node": "^14.6.4",
"@types/rbush": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"copy-webpack-plugin": "^6.2.1",
"eslint": "^7.8.1",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"html-webpack-plugin": "^4.5.0",
"husky": "^5.0.0-beta.0",
"is-ci": "^2.0.0",
"mobx": "^6.0.1",
"mobx-utils": "^6.0.1"
}
}