-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 945 Bytes
/
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
{
"name": "@falconpilot/roll20-ts-builder",
"version": "0.4.1",
"scripts": {
"prebuild": "shx rm -rf build && mkdir build",
"build": "yarn run prebuild && tsc -p ./tsconfig.json --outDir build",
"prepare": "yarn run build"
},
"main": "build/index.js",
"bin": {
"ts-roll20": "./bin/index.js"
},
"dependencies": {
"@babel/core": "^7.10.3",
"@emotion/core": "^10.0.35",
"@emotion/react": "11.0.0-next.17",
"@emotion/styled": "^11.0.0-next.13",
"@types/babel__core": "^7.1.9",
"@types/node": "^14.0.14",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"@types/yargs": "^15.0.5",
"ncp": "^2.0.0",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.9.5"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"nodemon": "^2.0.4",
"shx": "^0.3.3"
}
}