This repository has been archived by the owner on Aug 23, 2023. It is now read-only.
forked from au-re/ramen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 3.91 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
126
127
128
{
"name": "@au-re/ramen",
"version": "0.7.2",
"author": "Aurélien Franky",
"license": "MIT",
"description": "Node editor for visual programming",
"main": "lib/index.js",
"module": "lib/index.es.js",
"types": "lib/index.d.ts",
"files": [
"/lib"
],
"scripts": {
"analyze": "rm -rf dependency-map && source-map-explorer ./lib/ramen.min.js ./lib/ramen.min.js.map --html dependency-map/index.html",
"coverage": "npm run test -- --coverage",
"start": "start-storybook -p 6060",
"commit": "git-cz",
"test": "jest --watch",
"clean": "rm -rf node_modules && npm i",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"prepare": "npm run build",
"browserify": "browserify --debug ./lib/index.js -s ramen | terser -m -c --source-map \"content=inline\" -o ./lib/ramen.min.js",
"build": "rollup -c && npm run browserify",
"build:storybook": "build-storybook",
"deploy": "gh-pages -d storybook-static",
"predeploy": "npm run build-storybook",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/au-re/ramen.git"
},
"keywords": [
"node",
"editor"
],
"bugs": {
"url": "https://github.com/au-re/ramen/issues"
},
"homepage": "https://github.com/au-re/ramen#readme",
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/**/*.story.{js,jsx,ts,tsx}",
"!src/**/*.d.ts"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/config/jext/fileMock.js",
"\\.(css|sass|scss)$": "<rootDir>/config/jest/cssMock.js"
}
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0",
"styled-components": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-transform-runtime": "^7.8.3",
"@storybook/addon-options": "^5.3.4",
"@storybook/addons": "^5.3.4",
"@storybook/react": "^5.3.4",
"@storybook/theming": "^5.3.4",
"@types/jest": "^24.0.22",
"@types/lodash.get": "^4.4.6",
"@types/lodash.isequal": "^4.5.5",
"@types/react": "^16.9.11",
"@types/react-redux": "^7.1.5",
"@types/react-test-renderer": "^16.9.1",
"@types/simonwep__selection-js": "^1.2.0",
"@types/storybook-readme": "5.0.4",
"@types/styled-components": "5.0.1",
"ace-builds": "^1.4.7",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"browserify": "^16.5.0",
"commitizen": "^4.0.4",
"cz-emoji": "^1.1.2",
"gh-pages": "^2.2.0",
"jest": "^25.1.0",
"lodash.noop": "^3.0.1",
"markdown-loader": "^5.1.0",
"raw-loader": "^3.1.0",
"react-ace": "^8.0.0",
"react-docgen-typescript-webpack-plugin": "^1.1.0",
"react-markdown": "^4.2.2",
"react-split-pane": "^0.1.89",
"react-syntax-highlighter": "^11.0.2",
"react-test-renderer": "^16.11.0",
"rollup": "^1.29.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-typescript2": "^0.25.3",
"source-map-explorer": "^2.1.0",
"source-map-loader": "^0.2.4",
"storybook-readme": "^5.0.8",
"styled-components": "^5.1.0",
"terser": "^4.3.9",
"ts-jest": "^25.2.1",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.2",
"tslint-react": "^4.1.0",
"typescript": "^3.7.2",
"webpack-cli": "^3.3.10"
},
"config": {
"cz-emoji": {},
"commitizen": {
"path": "cz-emoji"
}
},
"dependencies": {
"@simonwep/selection-js": "^1.6.0",
"immer": "^5.3.6",
"lodash.get": "^4.4.2",
"lodash.isequal": "^4.5.0",
"react-draggable": "^4.3.0",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-undo": "^1.0.1",
"reselect": "^4.0.0"
}
}