-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
48 lines (48 loc) · 1.14 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": "pomoday",
"version": "2.0.0",
"main": "src/index.ts",
"author": "Huy Tran <[email protected]>",
"license": "BSD-3-Clause",
"scripts": {
"dev": "NODE_ENV=development parcel ./src/index.html",
"dist": "NODE_ENV=production parcel build ./src/index.html --no-source-maps --public-url ./",
"test": "ts-node node_modules/tape/bin/tape test/**/*.test.ts"
},
"dependencies": {
"@types/react-dom": "^16.9.1",
"marked": "^0.7.0",
"parcel-bundler": "^1.12.3",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"sass": "^1.23.0",
"sherlockjs": "^1.4.0",
"tailwindcss": "^1.1.2",
"typescript": "^3.6.3",
"uuid": "^3.3.3"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^1.3.0",
"@types/tape": "^4.2.33",
"husky": "3.0.9",
"lint-staged": "9.4.2",
"prettier": "1.18.2",
"tape": "^4.11.0",
"ts-node": "^8.4.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"git add"
],
"**/src/**/*.{json,md,scss}": [
"prettier --write",
"git add"
]
}
}