-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.01 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.01 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
{
"name": "cycle-minesweeper",
"version": "1.0.0",
"description": "Minesweeper built with Cycle.js",
"dependencies": {
"@cycle/core": "^6.0.2",
"@cycle/dom": "^9.0.2",
"lodash": "^4.3.0",
"rx": "^4.0.7"
},
"devDependencies": {
"babel-core": "^6.5.2",
"babel-loader": "^6.2.2",
"babel-plugin-syntax-flow": "^6.5.0",
"babel-plugin-transform-flow-strip-types": "^6.5.0",
"babel-plugin-transform-object-rest-spread": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1"
},
"scripts": {
"start": "webpack-dev-server --content-base public/ --inline",
"build": "webpack --config webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Jan Dudek <jd@jandudek.com> (http://github.com/jdudek)",
"license": "MIT",
"babel": {
"presets": [
"es2015"
],
"plugins": [
"syntax-flow",
"transform-flow-strip-types",
"transform-object-rest-spread"
]
}
}