-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.64 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
{
"name": "telegram_graph_1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"build:prod": "webpack --mode=production",
"serve": "webpack-dev-server",
"build:github": "yarn build:rollup",
"format:code": "prettier --write \"src/**/*.{ts,js,?css}\"",
"build:rollup": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PxyUp/Telegram_graph.git"
},
"author": "Iurii Panarin <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/PxyUp/Telegram_graph/issues"
},
"homepage": "https://github.com/PxyUp/Telegram_graph#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,js,?css}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"copy-webpack-plugin": "^5.0.1",
"css-loader": "^2.1.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"node-sass": "^4.11.0",
"prettier": "^1.16.4",
"rollup": "^1.6.0",
"rollup-copy-plugin": "^0.1.0",
"rollup-plugin-bundle-html": "^0.1.4",
"rollup-plugin-copy": "^0.2.3",
"rollup-plugin-sass": "^1.1.0",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-typescript2": "^0.20.1",
"rollup-plugin-uglify": "^6.0.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.3",
"tslint": "^5.13.1",
"typescript": "^3.3.3333",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
}
}