-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 977 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 977 Bytes
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
{
"name": "return.web",
"version": "1.0.0",
"description": "Retrospective web app",
"repository": "https://github.com/Sebazzz/Return",
"author": "Sebastiaan Dammann",
"license": "GPLv3",
"private": true,
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.12.1",
"autoprefixer": "^9.7.4",
"bulma": "^0.8.0",
"husky": "^4.2.3",
"node-sass": "^4.13.1",
"postcss-cli": "^7.1.0",
"prettier": "^2.0.2",
"pretty-quick": "^2.0.1"
},
"scripts": {
"build": "gulp build",
"pre-commit": "../../pre-commit",
"test": "echo 0",
"watch": "gulp sass:watch"
},
"husky": {
"hooks": {
"pre-commit": "yarn pre-commit"
}
},
"dependencies": {
"blazor.polyfill": "^3.0.7",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-cli": "^2.2.0",
"gulp-sass": "^4.0.2"
}
}