-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
54 lines (54 loc) · 1.41 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
49
50
51
52
53
54
{
"name": "react-ripples",
"version": "2.2.1",
"description": "The ripple effect. Ripples everywhere",
"main": "cjs",
"module": "esm",
"typings": "cjs/index.d.ts",
"keywords": [
"react",
"ripple",
"ripples",
"effect",
"button",
"material"
],
"author": "Rocky Wu <[email protected]>",
"license": "MIT",
"devDependencies": {
"@mdx-js/react": "^1.4.5",
"@next/mdx": "^9.0.5",
"@ts-mono/base": "rwu823/ts-mono#base/latest",
"@ts-mono/dev-react": "rwu823/ts-mono#dev-react",
"next": "^9.0.5",
"npm-run-all": "^4.1.5",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"styled-components": "^4.3.2"
},
"repository": "https://github.com/rwu823/react-ripples.git",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"transcrypt": "curl -s https://raw.githubusercontent.com/elasticdog/transcrypt/master/transcrypt | bash -s --",
"dev": "next",
"preview": "open gh-pages/index.html",
"build:page": "rm -rf .next gh-pages && next build && next export -o gh-pages",
"build:cjs": "tsc -b tsconfig.cjs.json",
"build:esm": "tsc -b tsconfig.esm.json",
"build": "rm -rf out && run-p build:* && node scripts/cp",
"test": "jest --coverage",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{ts,tsx,js}": [
"eslint --fix"
]
},
"optionalDependencies": {
"@rwu823/env": "rwu823/env"
}
}