-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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
{
"name": "react-nexusui",
"version": "0.1.3",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"author": "rakannimer",
"license": "MIT",
"scripts": {
"start": "parcel demo/index.html",
"build:demo": "parcel build demo/index.html -d demo-dist",
"deploy:demo": "npm run build:demo && cd demo-dist && surge --domain react-nexusui-demo.surge.sh",
"build": "rollup -c",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/react": "^16.8.12",
"@types/react-dom": "^16.8.3",
"babel-jest": "^24.7.1",
"jest": "^24.7.1",
"nexusui": "^2.0.10",
"parcel-bundler": "^1.12.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-testing-library": "^6.0.4",
"rollup": "^1.9.0",
"rollup-plugin-typescript2": "^0.20.1",
"ts-jest": "^24.0.1",
"typescript": "^3.4.1",
"web-audio-test-api": "^0.5.2"
},
"dependencies": {},
"peerDependencies": {
"nexusui": "^2.0.10",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/rakannimer/react-nexusui"
}
}