-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
81 lines (81 loc) · 2.4 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
{
"name": "wirer",
"version": "0.1.0",
"description": "wirable logic bricks",
"main": "dist/index.js",
"types": "dist/types.d.ts",
"scripts": {
"preinstall": "npx npm-force-resolutions",
"test": "jest --watchAll --coverage --config ./jest.config.js",
"start": "webpack --config webpack.config.js",
"start:dev": "webpack-dev-server --config webpack.config.js",
"storybook": "start-storybook -s ./examples -p 6006 --ci",
"build-storybook": "build-storybook -s examples",
"deploy-storybook": "storybook-to-ghpages",
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ja0n/wirer.git"
},
"keywords": [
"wirer",
"logic",
"brick",
"wire",
"visual",
"transpiler"
],
"author": "ja0n",
"license": "MIT",
"bugs": {
"url": "https://github.com/ja0n/wirer/issues"
},
"homepage": "https://github.com/ja0n/wirer#readme",
"dependencies": {
"@storybook/core": "^6.3.2",
"firmata-io": "^2.3.0",
"istanbul-lib-report": "^3.0.0",
"leader-line": "ja0n/leader-line",
"lodash": "^4.17.21",
"node-fetch": "^3.2.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-uid": "^2.3.1",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@storybook/addon-essentials": "^6.3.2",
"@storybook/builder-webpack5": "^6.3.2",
"@storybook/manager-webpack5": "^6.3.2",
"@storybook/react": "^6.3.2",
"@storybook/storybook-deployer": "^2.8.10",
"@types/enzyme": "^3.10.8",
"@types/jest": "^26.0.23",
"@types/styled-components": "^5.1.11",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
"babel-loader": "^8.2.2",
"babel-plugin-add-module-exports": "^1.0.4",
"enzyme": "^3.11.0",
"html-webpack-plugin": "^5.3.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jest-css-modules": "^2.1.0",
"jest-environment-enzyme": "^7.1.2",
"jest-enzyme": "^7.1.2",
"mini-css-extract-plugin": "^2.0.0",
"skeleton-loader": "^2.0.0",
"source-map-loader": "^3.0.0",
"terser-webpack-plugin": "^5.1.4",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"webpack": "^5.72.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}