-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "@sevenryze/movie-list",
"version": "2.0.5",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"files": [
"dist/",
"typings/"
],
"scripts": {
"start": "towerflow start",
"production": "towerflow production",
"test": "towerflow test --env=jsdom",
"publish-to-npm": "npm run test && npm run production && npm publish",
"generate-config": "towerflow assistant --generate-config",
"remove-config": "towerflow assistant --remove-config"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sevenryze/movie-list.git"
},
"towerflow": {
"type": "web-lib"
},
"dependencies": {
"@types/lodash.throttle": "^4.1.4",
"lodash.throttle": "^4.1.1"
},
"devDependencies": {
"@types/react": "^16.7.18",
"@types/react-dom": "^16.0.11",
"@types/styled-components": "^4.1.5",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"styled-components": "^4.1.3",
"towerflow": "^1.3.14"
},
"peerDependencies": {
"react": "^16.4.2",
"react-dom": "^16.4.2"
}
}