forked from mstijak/tdo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.4 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
{
"name": "tdo",
"version": "1.0.0",
"description": "Hackable TODO list",
"main": "index.js",
"scripts": {
"test": "mocha",
"start": "webpack-dev-server --config config/webpack.dev.js --open",
"build": "webpack --config config/webpack.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mstijak/tdo.git"
},
"keywords": [
"todo",
"list",
"cx"
],
"author": "Marko Stijak",
"license": "MIT",
"bugs": {
"url": "https://github.com/mstijak/tdo/issues"
},
"homepage": "https://github.com/mstijak/tdo#readme",
"dependencies": {
"copy-webpack-plugin": "^3.0.1",
"cx-core": "^16.10.8",
"cx-react": "^16.8.4",
"cx-redux": "^16.10.0",
"marked": "^0.3.6",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"uid": "0.0.2"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-plugin-cx": "^16.8.2",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-es2015-loose": "^8.0.0",
"babel-preset-stage-0": "^6.16.0",
"css-loader": "^0.25.0",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"html-webpack-plugin": "^2.22.0",
"node-sass": "^3.10.1",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "^2.1.0-beta.25",
"webpack-dev-server": "^2.1.0-beta.8",
"webpack-merge": "^0.14.1"
}
}