forked from pixeleet/react-cookie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.67 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"devDependencies": {
"@babel/cli": "^7.0.0-rc.1",
"@babel/core": "^7.0.0-rc.1",
"@babel/plugin-proposal-class-properties": "^7.0.0-rc.1",
"@babel/preset-env": "^7.0.0-rc.1",
"@babel/preset-react": "^7.0.0-rc.1",
"awesome-typescript-loader": "^5.2.0",
"babel-loader": "^8.0.0-beta.4",
"babel-plugin-add-module-exports": "^0.2.1",
"husky": "^0.14.3",
"jasmine-core": "^3.2.0",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.1.2",
"karma-jasmine-html-reporter": "^1.3.0",
"karma-sauce-launcher": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^3.0.0",
"lerna": "3.0.4",
"prettier": "^1.14.2",
"rimraf": "^2.6.1",
"rollup": "^0.64.1",
"rollup-plugin-commonjs": "^9.1.5",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^4.0.0",
"size-limit": "^0.19.2",
"typescript": "^3.0.1",
"webpack": "^4.16.5"
},
"scripts": {
"postinstall": "lerna bootstrap",
"precommit": "npm run format && npm test",
"format": "prettier 'packages/**/*.js' --single-quote --write",
"test": "npm run build && npm run size && karma start --single-run",
"watch": "karma start",
"build": "lerna run build",
"size": "size-limit"
},
"size-limit": [
{
"path": "./packages/universal-cookie/lib/index.js",
"limit": "2.5 KB"
},
{
"path": "./packages/universal-cookie-express/lib/index.js",
"limit": "2.5 KB"
},
{
"path": "./packages/react-cookie/lib/index.js",
"limit": "10 KB"
}
],
"dependencies": {}
}