-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.43 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
{
"name": "solid-waffle",
"version": "0.0.1",
"description": "Frontend for ReVisiit",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --open",
"build": "webpack",
"pretty": "prettier . --config prettier.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/revisiit/solid-waffle.git"
},
"author": "digi0ps",
"license": "ISC",
"bugs": {
"url": "https://github.com/revisiit/solid-waffle/issues"
},
"homepage": "https://github.com/revisiit/solid-waffle#readme",
"devDependencies": {
"awesome-typescript-loader": "^5.2.1",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^2.1.1",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^2.3.0",
"mini-css-extract-plugin": "^0.7.0",
"prettier": "^1.17.1",
"pretty-quick": "^1.11.0",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"typescript": "^3.5.1",
"webpack": "^4.32.2",
"webpack-build-notifier": "^1.0.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.5.0"
},
"dependencies": {
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"axios": "^0.19.0",
"history": "^4.9.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}