-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.42 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
{
"name": "xprst-draft",
"version": "0.0.8",
"description": "",
"main": "./dist/index.js",
"types": "./@types/index.d.ts",
"files": [
"@types/",
"dist/",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git@github.com:xprst/xprst-draft.git"
},
"author": "",
"license": "MIT",
"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": "draft:*",
"PORT": "8888"
}
},
"compile-dev": {
"command": "gulp --gulpfile ./gulp/gulpfile.dev.compile.js --cwd ./",
"env": {
"DEBUG": "draft:*",
"NODE_ENV": "development"
}
},
"compile-prod": {
"command": "gulp --gulpfile ./gulp/gulpfile.prod.compile.js --cwd ./",
"env": {
"DEBUG": "draft:*",
"NODE_ENV": "production"
}
}
},
"dependencies": {
"fbjs": "^0.8.16",
"immutable": "^3.8.2"
},
"devDependencies": {
"@types/debug": "^0.0.30",
"@types/immutable": "^3.8.7",
"@types/node": "^9.4.5",
"@types/react": "^16.3.14",
"@types/react-dom": "^16.0.5",
"@types/webpack": "^3.8.5",
"antd": "^3.5.3",
"babel-eslint": "^8.2.1",
"better-npm-run": "^0.1.0",
"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.8.3",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"run-sequence": "^2.2.1",
"sass-loader": "^6.0.7",
"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"
}
}