-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 2.93 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
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
{
"name": "xprst-com",
"version": "0.0.54",
"description": "component base for xpresentation",
"main": "./dist/index.js",
"types": "./@types/index.d.ts",
"files": [
"@types/",
"dist/",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git@github.com:xprst/xprst-com.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/xprst/xprst-com/issues"
},
"homepage": "https://github.com/xprst/xprst-com#readme",
"scripts": {
"prepublish": "yarn run build",
"start": "better-npm-run start",
"build": "yarn run lint && better-npm-run compile-prod",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .js && tslint --format verbose \"src/**/*.{ts,tsx}\"",
"dev": "better-npm-run dev",
"compile": "better-npm-run compile-dev"
},
"betterScripts": {
"dev": {
"command": "gulp --gulpfile ./gulp/gulpfile.dev.js --cwd ./",
"env": {
"NODE_ENV": "development",
"DEBUG": "com:*",
"PORT": "8888"
}
},
"compile-dev": {
"command": "gulp --gulpfile ./gulp/gulpfile.dev.compile.js --cwd ./",
"env": {
"DEBUG": "com:*",
"NODE_ENV": "development"
}
},
"compile-prod": {
"command": "gulp --gulpfile ./gulp/gulpfile.prod.compile.js --cwd ./",
"env": {
"DEBUG": "com:*",
"NODE_ENV": "production"
}
}
},
"dependencies": {
"@xprst/handsontable-react": "^0.0.1",
"antd": "^3.7.0",
"clone": "^2.1.2",
"color": "^3.0.0",
"handsontable": "^5.0.1",
"immutable": "^3.8.2",
"keycode": "^2.1.9",
"react-beautiful-dnd": "^7.1.0",
"xprst-draft": "^0.0.7"
},
"devDependencies": {
"@types/color": "^3.0.0",
"@types/debug": "^0.0.30",
"@types/immutable": "^3.8.7",
"@types/node": "^9.6.0",
"@types/react": "^16.3.14",
"@types/react-beautiful-dnd": "^6.0.1",
"@types/react-color": "^2.13.5",
"@types/react-dom": "^16.0.5",
"@types/webpack": "^3.8.5",
"babel-eslint": "^8.2.1",
"better-npm-run": "^0.1.0",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.9",
"debug": "^3.1.0",
"eslint": "^4.17.0",
"gulp": "^3.9.1",
"gulp-connect": "^5.2.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-typescript": "^4.0.1",
"gulp-uglify": "^3.0.0",
"gulp-webpack": "^1.5.0",
"html-webpack-plugin": "^2.30.1",
"less": "2.7.3",
"less-loader": "^4.0.5",
"merge2": "^1.2.1",
"node-sass": "^4.9.0",
"react": "^16.3.2",
"react-color": "^2.14.1",
"react-dom": "^16.3.2",
"run-sequence": "^2.2.1",
"sass-loader": "^7.0.1",
"source-map-loader": "^0.2.3",
"style-loader": "^0.20.1",
"ts-import-plugin": "^1.4.4",
"ts-loader": "^3.5.0",
"tslint": "^5.10.0",
"tslint-react": "^3.6.0",
"typescript": "^2.8.3",
"url-loader": "^1.0.1",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.1"
}
}