-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.22 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "react-typescript-rollup-npm",
"version": "2.0.0",
"description": "Boilerplate for React.js component libary (on npm) with typescript, rollup and Next.js testing.",
"main": "build/index.js",
"module": "build/index.es.js",
"jsnext:main": "build/index.es.js",
"repository": {
"type": "git",
"url": "beeinger/react-typescript-rollup-npm"
},
"scripts": {
"build": "rollup -c",
"test": "jest --coverage",
"storybook": "start-storybook",
"dev": "yarn build && yarn upgrade react-typescript-rollup-npm --latest & next"
},
"keywords": [],
"author": "bamboosted/beeinger",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.7",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@rollup/plugin-node-resolve": "^7.0.0",
"@rollup/plugin-url": "^4.0.0",
"@storybook/react": "^5.3.10",
"@svgr/rollup": "^5.1.0",
"@testing-library/jest-dom": "^5.1.0",
"@testing-library/react": "^9.4.0",
"@types/jest": "^25.1.1",
"@types/node": "^13.7.0",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"jest": "^25.1.0",
"next": "^9.2.1",
"np": "^5.2.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-typescript-rollup-npm": "^1.1.0",
"rollup": "^1.31.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-terser": "^5.1.3",
"rollup-plugin-typescript2": "^0.25.3",
"ts-jest": "^25.1.0",
"typescript": "^3.7.5"
},
"peerDependencies": {
"react": "^16",
"react-dom": "^16"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"build/"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.test.json"
}
}
},
"standard": {
"ignore": [
"node_modules/",
"build/"
],
"globals": [
"describe",
"it",
"test",
"expect",
"afterAll",
"jest"
]
}
}