-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 980 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
38
{
"name": "@tubepress/redux",
"version": "2.0.0",
"description": "Redux building blocks for TubePress",
"author": "Eric Hough <eric@tubepress.com>",
"license": "MIT",
"module": "es/index.js",
"files" : [
"es",
"src"
],
"dependencies": {
"@redux-dynostore/core" : "^2.0",
"immer" : "^2.0",
"redux" : "^4.0",
"redux-devtools-extension" : "^2.13",
"redux-pack" : "^0.1",
"redux-thunk" : "^2.3"
},
"devDependencies": {
"@tubepress/dev-pack-rollup": "^1.0"
},
"browserslist": [
"extends @tubepress/browserslist-config"
],
"eslintConfig": {
"extends": [
"@tubepress"
]
},
"scripts": {
"clean" : "rimraf es",
"build" : "yarn clean && npx rollup -c",
"production" : "NODE_ENV=production yarn build",
"profile" : "NODE_ENV=profile yarn build && google-chrome stats.html"
},
"sideEffects": false
}