This repository has been archived by the owner on Jun 22, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.55 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
{
"name": "cycle-snabbdom-examples",
"version": "1.0.0",
"description": "Examples using Cycle.js with Snabbdom",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-prod": "./node_modules/.bin/webpack --config webpack.production.js -p --progress --colors",
"prod": "set NODE_ENV=production&& npm run build-prod && node src/server/server.js",
"start": "set NODE_ENV=development&& node src/server/server.js"
},
"author": "Mike Montoya",
"license": "MIT",
"dependencies": {
"@cycle/dom": "^13.0.0",
"@cycle/history": "^4.0.2",
"@cycle/http": "^11.1.0",
"@cycle/isolate": "^1.4.0",
"@cycle/xstream-run": "^3.1.0",
"express": "^4.14.0",
"normalize.css": "^5.0.0",
"url-mapper": "^1.1.1",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.0",
"xstream": "^6.4.1"
},
"devDependencies": {
"autoprefixer": "^6.5.1",
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.16.0",
"css-loader": "^0.25.0",
"eslint": "^1.10.3",
"eslint-config-cycle": "^3.2.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-cycle": "^1.0.2",
"eslint-plugin-no-class": "^0.1.0",
"extract-text-webpack-plugin": "^1.0.1",
"json-loader": "^0.5.4",
"node-noop": "^1.0.0",
"node-sass": "^3.10.1",
"postcss-loader": "^0.13.0",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.2"
}
}