-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
53 lines (53 loc) · 1.53 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
{
"name": "typescript-starter-cycle",
"version": "2.0.0",
"description": "An opinionated starter for Cycle.js projects powered by TypeScript",
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"dev": "cross-env NODE_ENV=development webpack-dev-server --content-base ./dist --hot --inline --colors --port 3030 --open --history-api-fallback",
"start": "npm run dev"
},
"repository": {
"type": "git",
"url": "https://github.com/cyclejs-community/typescript-starter-cycle.git"
},
"keywords": [
"typescript",
"cyclejs",
"cycle",
"starter",
"webpack"
],
"author": "Sudarsan Balaji",
"license": "MIT",
"bugs": {
"url": "https://github.com/cyclejs-community/typescript-starter-cycle/issues"
},
"homepage": "https://github.com/cyclejs-community/typescript-starter-cycle",
"dependencies": {
"@cycle/dom": "^18.3.0",
"@cycle/history": "^6.4.0",
"@cycle/http": "^14.5.0",
"@cycle/isolate": "^3.1.0",
"@cycle/run": "^3.3.0",
"csstips": "^0.2.2",
"csx": "^8.5.0",
"ramda": "^0.25.0",
"switch-path": "^1.2.0",
"typestyle": "^1.4.3",
"xstream": "^11.0.0"
},
"devDependencies": {
"copy-webpack-plugin": "^4.1.1",
"cross-env": "^5.1.0",
"html-webpack-plugin": "^2.30.1",
"source-map-loader": "^0.2.2",
"ts-loader": "^3.0.2",
"typescript": "^2.5.3",
"uglifyjs-webpack-plugin": "^1.0.0-beta.3",
"webpack": "^3.8.1",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-dev-server": "^2.9.2",
"yargs": "^9.0.1"
}
}