forked from egorovsa/react-video-seek-slider
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.01 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
{
"name": "react-time-seek-slider",
"description": "Time seek slider for React",
"version": "1.1.0",
"main": "./lib/index.js",
"author": "Dylan Yi",
"license": "MIT",
"scripts": {
"dev": "webpack-dev-server",
"stylus": "stylus --compress < ./src/styl/ui-time-seek-slider.styl > ./lib/ui-time-seek-slider.css",
"production": "rm -rf ./lib && tsc ./src/ts/index.tsx -d --jsx react --target ES5 --outDir ./lib && npm run stylus && cp ./lib/index.d.ts ./index.d.ts"
},
"devDependencies": {
"@types/react": "^16.3.12",
"awesome-typescript-loader": "^5.0.0",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"style-loader": "^0.21.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"typescript": "^2.8.3",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^3.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/feeva/react-time-seek-slider.git"
},
"dependencies": {
"react": "^16.3.2",
"react-dom": "^16.3.2"
}
}