-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
125 lines (125 loc) · 4.77 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@psychobolt/react-paperjs",
"version": "1.0.3",
"description": "React Fiber renderer and component container for Paper.js",
"main": "./dist/index.js",
"repository": "https://github.com/psychobolt/react-paperjs.git",
"author": "psychobolt",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"flow-typed-update": "cross-env BABEL_ENV=commonjs babel-node flow-typed-update.js",
"flow-typed-install": "rimraf flow-typed/npm && npm run flow-typed-update",
"build:dev": "cross-env BABEL_ENV=rollup rollup -c rollup.config.dev.js",
"build:prod": "cross-env BABEL_ENV=rollup rollup -c rollup.config.prod.js",
"clean": "rimraf dist/index.*.js dist/*-*.*.js packages/*/dist/index.*.js packages/*/dist/*-*.*.js",
"build": "npm run clean && npm run build:dev && npm run build:prod",
"watch": "npm run build:dev -- --w",
"start": "concurrently \"npm:watch\" \"npm:storybook\"",
"test": "cross-env NODE_OPTIONS=\"-r @babel/register\" BABEL_ENV=test jest --passWithNoTests",
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "stylelint ./src/**/*.js",
"lint:js": "cross-env BABEL_ENV=commonjs eslint \"**/*.js\"",
"storybook": "start-storybook",
"build-storybook": "build-storybook",
"bootstrap": "yarn install && lerna bootstrap",
"dist": "npm run build && lerna publish",
"codecov": "cross-env BABEL_ENV=commonjs babel-node codecov.js"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/node": "^7.13.13",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.15",
"@babel/plugin-proposal-do-expressions": "^7.14.0",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/plugin-proposal-export-namespace-from": "^7.12.13",
"@babel/plugin-proposal-json-strings": "^7.13.8",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/plugin-proposal-numeric-separator": "^7.12.13",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/plugin-proposal-private-methods": "^7.13.0",
"@babel/plugin-proposal-private-property-in-object": "^7.14.0",
"@babel/plugin-proposal-throw-expressions": "^7.12.13",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.14.0",
"@babel/preset-env": "^7.14.0",
"@babel/preset-flow": "^7.13.13",
"@babel/preset-react": "^7.13.13",
"@babel/register": "^7.13.16",
"@lerna/project": "^4.0.0",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-console": "^1.2.3",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/cli": "^6.2.9",
"@storybook/react": "^6.2.9",
"@storybook/theming": "^6.2.9",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-styled-components": "^1.12.0",
"cash-true": "^0.0.2",
"codecov": "^3.8.1",
"concurrently": "^6.0.2",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.3",
"enzyme": "^3.11.0",
"eslint": "^7.25.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-react-app": "^6.0.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"flow-bin": "^0.150.0",
"flow-typed": "^3.3.1",
"glob": "^7.1.6",
"is-class": "^0.0.9",
"jest": "^26.6.3",
"jest-styled-components": "^7.0.4",
"lerna": "^4.0.0",
"lodash": "^4.17.21",
"micromatch": "^4.0.4",
"paper": "^0.12.15",
"prop-types": "^15.7.2",
"raf": "^3.4.1",
"raw-loader": "^4.0.2",
"re-resizable": "^6.9.0",
"react": "^17.0.2",
"react-cache": "^2.0.0-alpha.1",
"react-dom": "^17.0.2",
"react-reconciler": "0.26.2",
"rimraf": "^3.0.2",
"rollup": "2.46.0",
"rollup-plugin-terser": "^7.0.2",
"slash": "3.0.0",
"source-map-loader": "1.1.0",
"styled-components": "^5.2.3",
"stylelint": "^13.13.1",
"stylelint-config-recommended": "^5.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0"
},
"dependencies": {
"react-is": "^17.0.2"
},
"peerDependencies": {
"paper": "^0.12.4",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}