This repository has been archived by the owner on Apr 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 3.33 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
129
130
131
{
"name": "orion",
"version": "1.0.0-dev",
"registry": "github",
"description": "A visual framework for creating engaging and delightful web applications.",
"keywords": [
"html",
"css",
"css framework",
"vsiual toolkit"
],
"author": "Kay Sackey",
"contributors": [
"Kekeli Sackey"
],
"license": "UNLICENSED",
"private": true,
"main": "orion/index.ts",
"homepage": "https://github.com/9Cloud/Ceres",
"repository": {
"type": "git",
"url": "https://github.com/9Cloud/Ceres.git"
},
"babel": {
"presets": [
[
"es2015",
{
"loose": true
}
],
"react",
"stage-0"
],
"env": {
"production": {
"plugins": [
"transform-react-constant-elements",
"transform-react-inline-elements",
"transform-decorators-legacy",
"transform-runtime"
]
}
}
},
"directories": {
"lib": "orion"
},
"peerDependencies": {
"tide": "git://github.com/KaySackey/tide.git#dev",
"markdown-it": "7.x",
"react": "^15.6.1",
"react-dom": "^15.4.2",
"mobx": "3.x",
"mobx-react": "4.x",
"prop-types": "15.x"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"browser-sync": "^2.15.0",
"compression": "^1.6.2",
"express": "^4.14.0",
"file-loader": "^0.11.2",
"happypack": "^3.0.2",
"html-webpack-plugin": "^2.22.0",
"json-loader": "^0.5.4",
"npm-watch": "^0.1.6",
"optimist": "^0.6.1",
"progress-bar-webpack-plugin": "^1.9.0",
"ts-loader": "^2.2.0",
"typescript": "^2.4.1",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.1.0-beta.12",
"webpack-uglify-js-plugin": "^1.1.9"
},
"dependencies": {
"@types/react": "^15.0.32",
"@types/signals": "^0.0.17",
"classnames": "^2.2.5",
"prosemirror": "^0.9.1",
"validator": "^7.2.0",
"tide": "git://github.com/KaySackey/tide.git#dev",
"mobx": "^3.1.16",
"mobx-react": "^4.2.2",
"mobx-remotedev": "^0.2.8",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"watch": {
"compile:sass": {
"patterns": [
"scss"
],
"extensions": "scss",
"quiet": false
},
"dev_server": {
"patterns": [
"webpack.config.js"
],
"extensions": "js",
"quiet": false
},
"proxy_server": {
"patterns": [
"server.js"
],
"quiet": false
},
"browser_sync:dev": {
"patterns": [
"server_bs.js"
],
"quiet": false
}
},
"scripts": {
"start": "npm run watch",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run compile:js && npm run compile:sass",
"compile:js": "webpack --config ./webpack.config.js --hide-modules --optimize-minimize --define process.env.NODE_ENV='production'",
"compile:sass": "sassc -m scss/demo.scss scss/demo.css; sassc -m scss/main.scss scss/main.css; sassc -m scss/fonts.scss scss/fonts.css;",
"proxy_server": "NODE_ENV=development; babel-node server.js",
"browser_sync:dev": "sleep 1; NODE_ENV=production; babel-node server_bs.js",
"browser_sync:open": "NODE_ENV=production; babel-node server_bs.js --bsOpen=external",
"watch": "npm-watch",
"dev_server": "NODE_ENV=development; webpack-dev-server",
"webpack": "webpack --hide-modules"
}
}