-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 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
{
"name": "react-file-upload",
"version": "1.0.0",
"description": "",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"start:client": "cd client && npm start",
"start:server": "nodemon --watch src --exec ts-node src/server.ts",
"start": "concurrently \"npm run start:server\" \"npm run start:client\"",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [],
"author": "dpyzo0o",
"license": "ISC",
"dependencies": {
"@material-ui/icons": "^4.5.1",
"busboy": "^0.3.1"
},
"devDependencies": {
"@types/busboy": "^0.2.3",
"@types/node": "^13.1.7",
"concurrently": "^5.0.2",
"husky": "^4.0.10",
"lint-staged": "^9.5.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"ts-node": "^8.6.2",
"typescript": "^3.7.4"
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 100
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{css,json,md,ts,tsx}": [
"prettier --write",
"git add"
]
}
}