-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 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
{
"name": "@negabaro/react-modal",
"version": "1.0.0",
"description": "This is just a simple modal component for React",
"main": "./lib/index.js",
"types": "./src/types/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc ./src/index.tsx --outDir ./lib --jsx react",
"lib": "babel src --out-dir lib --extensions \".ts,.tsx\"",
"start": "webpack-dev-server ./test/index.tsx --mode development --open",
"build": "webpack ./test/index.tsx --development",
"deploy": "np --yolo"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"@types/react": "^16.4.14",
"@types/react-dom": "^16.0.7",
"@types/styled-components": "^3.0.1",
"babel-loader": "^8.0.2",
"css-loader": "^0.26.1",
"webpack": "^4.16.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.8" ,
"react": "^16.3.2",
"react-dom": "^16.5.2",
"np": "^2.20.1",
"npm-run-all": "^4.1.1",
"sass-loader": "^4.1.0",
"style-loader": "^0.13.1",
"typescript": "^3.0.3"
},
"author": "negabaro",
"license": "MIT"
}