-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1021 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
33
34
35
36
37
38
39
40
41
42
43
{
"name": "imlo-app",
"version": "1.0.0",
"main": "index.js",
"license": "",
"scripts": {
"dev": "next src",
"build": "next build src",
"start": "next start src",
"type-check": "tsc",
"prettier": "prettier --write src/**/*.{ts,tsx}",
"format-all": "prettier --check src/**/*.{ts,tsx}",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
},
"dependencies": {
"@types/axios": "^0.14.0",
"axios": "^0.19.0",
"emotion": "^10.0.14",
"express": "^4.17.1",
"immutable": "^4.0.0-rc.12",
"is-hotkey": "^0.1.4",
"next": "^9.0.1",
"nodemon": "^1.19.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"slate": "^0.47.4",
"slate-react": "^0.22.4",
"typescript": "^3.5.2"
},
"devDependencies": {
"@types/node": "^12.6.2",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"husky": "^3.0.0",
"prettier": "1.18.2",
"pretty-quick": "^1.11.1",
"ts-node": "^8.3.0"
}
}