-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.98 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
{
"name": "@novas/components",
"version": "0.0.1-alpha.14",
"description": "Minimal and performant React component library built on styled-components",
"module": "dist/components.esm.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/codynova/components",
"author": "Cody Persinger <[email protected]> (https://github.com/codynova)",
"license": "MIT",
"sideEffects": false,
"scripts": {
"build": "npm run lint && npm run prettier && rimraf dist && rollup -c",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"lint": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\"",
"prettier": "prettier --write .",
"pretty-quick": "pretty-quick --staged"
},
"dependencies": {
"@novas/substate": "0.0.1-alpha.4",
"styled-components": "5.3.3",
"react": "17.0.2"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@babel/eslint-parser": "7.16.0",
"@babel/eslint-plugin": "7.14.5",
"@babel/plugin-transform-runtime": "7.16.0",
"@babel/preset-env": "7.16.0",
"@babel/preset-react": "7.16.0",
"@babel/preset-typescript": "7.16.0",
"@novas/eslint-config": "latest",
"@novas/prettier-config": "latest",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-node-resolve": "13.0.6",
"@rollup/plugin-typescript": "8.3.0",
"@types/styled-components": "5.1.15",
"@typescript-eslint/eslint-plugin": "5.3.0",
"@typescript-eslint/parser": "5.3.0",
"babel-plugin-styled-components": "1.13.3",
"eslint": "8.2.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-react": "7.26.1",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "7.0.4",
"prettier": "2.4.1",
"pretty-quick": "3.1.1",
"rimraf": "3.0.2",
"rollup": "2.59.0",
"rollup-plugin-size-snapshot": "0.12.0",
"rollup-plugin-terser": "7.0.2",
"typescript": "4.4.4"
},
"peerDependencies": {
"babel-plugin-styled-components": ">=1.13.3",
"styled-components": ">=5.3.3",
"react": ">=17.0.2"
},
"peerDependenciesMeta": {
"babel-plugin-styled-components": {
"optional": true
}
}
}