-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 910 Bytes
/
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
{
"name": "pangrama",
"version": "0.1.0",
"private": true,
"homepage": ".",
"repository": "https://gitlab.com/Roboe/pangrama",
"bugs": "https://gitlab.com/Roboe/pangrama/-/issues",
"license": "GPL-3.0",
"dependencies": {
"classnames": "^2.3.2",
"normalize.css": "^8.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "^5.0.1",
"typeface-fira-sans": "^1.1.13"
},
"devDependencies": {
"husky": "^8.0.3",
"prettier": "^2.8.7"
},
"scripts": {
"prepare": "husky install",
"husky:uninstall": "husky uninstall",
"start": "react-scripts start",
"build": "react-scripts build",
"format": "prettier --ignore-unknown --write",
"format:check": "prettier --ignore-unknown --check",
"format:all": "npm run format .",
"test": "react-scripts test --env=./test/custom-test-env.js",
"eject": "react-scripts eject"
}
}