forked from martinnov92/React-Splitters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.33 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
{
"name": "m-react-splitters",
"version": "1.0.2",
"private": false,
"main": "./lib/index",
"homepage": "https://martinnov92.github.io/React-Splitters/",
"license": "MIT",
"author": "Martin Novák <[email protected]>",
"description": "Splitter component for React, written in TypeScript",
"typings": "./lib/typings/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/martinnov92/React-Splitters"
},
"keywords": [
"react",
"react-splitter",
"component",
"splitter",
"splitters",
"typescript",
"ts",
"es6"
],
"devDependencies": {
"node-sass": "^4.5.0",
"npm-run-all": "^4.0.2",
"react-scripts-ts": "1.1.6"
},
"dependencies": {
"@types/node": "^7.0.5",
"@types/react": "^15.0.22",
"@types/react-dom": "^0.14.23",
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"scripts": {
"tsc-compile": "tsc ./src/components/Splitters/*.tsx --outDir ./lib --jsx react --target ES5",
"build-css": "node-sass src/ -o src/",
"watch-css": "npm run build-css && node-sass src/ -o src/ --watch",
"start-js": "react-scripts-ts start",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts-ts build",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject"
}
}