-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.74 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.74 KB
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
{
"name": "@react-page/core",
"version": "0.0.0",
"main": "./lib/index.js",
"module": "./lib-es/index.js",
"typings": "./lib/index.d.ts",
"author": "ORY GmbH",
"license": "GNU Lesser General Public License v3.0",
"scripts": {
"transpile": "babel ./src --out-dir lib --source-maps --copy-files --only **/*.ts,**/*.tsx --extensions .ts,.tsx --ignore **/*.d.ts",
"build": "npm-run-all --parallel build:lib build:css",
"build:watch": "npm-run-all --parallel build:lib:watch build:css:watch",
"build:lib": "tsc -p ./tsconfig.json && tsc -p ./tsconfig-es.json",
"build:lib:watch": "npm run build:lib -- --watch",
"build:css": "postcss -c ../../postcss.config.js --dir lib/ src/index.css",
"build:css:watch": "npm-run-all build:css -- -w",
"docs": "documentation build ./lib/**/*.js --format md --github -o ../../docs/api/core.md",
"prebuild": "npm-run-all clean",
"clean": "rimraf \"lib\" && rimraf \"lib-es\" && rm -f *.tsbuildinfo"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"dependencies": {
"@loadable/component": "^5.10.2",
"classnames": "^2.2.5",
"lodash.throttle": "^4.1.1",
"is-hotkey": "~0.1.6",
"fast-deep-equal": "^3.1.1",
"react-dnd": "^10.0.2",
"react-dnd-html5-backend": "^10.0.2",
"react-draggable": "^3.0.3",
"react-hotkeys": "^0.10.0",
"react-redux": "^7.2.0",
"react-resizable": "^1.9.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"redux-undo": "^1.0.0",
"reselect": "^3.0.0",
"semver": "^5.3.0",
"uuid": "^3.0.1"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jest": "^23.3.10",
"@types/loadable__component": "^5.10.0",
"@types/uuid": "^3.4.4"
}
}