forked from redwoodjs/redwood
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 811 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
{
"name": "@redwoodjs/router",
"version": "0.19.1",
"files": [
"dist",
"src/index.d.ts"
],
"main": "dist/index.js",
"types": "src/index.d.ts",
"license": "MIT",
"dependencies": {
"core-js": "3.6.5"
},
"peerDependencies": {
"prop-types": "*",
"react": "*"
},
"devDependencies": {
"prop-types": "15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"scripts": {
"build": "yarn build:js",
"prepublishOnly": "yarn cross-env NODE_ENV=production yarn build",
"build:js": "babel src -d dist --extensions \".js,.ts,.tsx\"",
"build:watch": "nodemon --watch src --ext \"js,ts,tsx\" --ignore dist --exec \"yarn build\"",
"test": "jest",
"test:watch": "yarn test --watch"
},
"gitHead": "c235e7d7186e5e258764699c0e0e1d5cc0fdd0b5"
}