-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.09 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": "locus-react",
"version": "0.1.0",
"description": "A simple wrapping React component for tracking a DOM element's position",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/soul-codes/ts-boilerplate",
"author": "soul-codes <reach.soul.codes@gmail.com>",
"license": "MIT",
"scripts": {
"prepare": "rm -rf dist && tsc",
"start": "concurrently --kill-others \"npm run tsc-watch\" \"npm run demo-server\"",
"release": "release-it",
"tsc-watch": "rm -rf dist && tsc --watch",
"demo-server": "webpack-serve --config ./demo/webpack.config.js --content ./demo --port 9001"
},
"devDependencies": {
"@types/react": "^16.3.18",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-react": "^6.24.1",
"concurrently": "^3.5.1",
"locus-dom": "^0.1.1",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"release-it": "^7.4.7",
"typescript": "^2.9.1",
"webpack": "^4.12.0",
"webpack-serve": "^1.0.4"
},
"peerDependencies": {
"locus-dom": "^0.1.1",
"react": "^16.4.1"
}
}