-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.35 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.35 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
39
40
41
42
43
44
45
46
47
48
{
"name": "dramatic-note",
"version": "1.0.0",
"description": "Keep your dramatic notes with this simple SPA web app.",
"main": "index.js",
"scripts": {
"build": "node_modules/.bin/webpack",
"watch": "node_modules/.bin/webpack --watch",
"start": "python run.py",
"test" : "node_modules/.bin/babel-node --presets es2015 -- app/src/test/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/heejongahn/dramatic-note.git"
},
"author": "Heejong Ahn",
"license": "MIT",
"bugs": {
"url": "https://github.com/heejongahn/dramatic-note/issues"
},
"homepage": "https://github.com/heejongahn/dramatic-note#readme",
"dependencies": {
"babel-cli": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"bootstrap": "^3.3.7",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"node-sass": "^3.8.0",
"postcss-loader": "^0.10.1",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-redux": "^4.4.5",
"react-router": "^2.6.1",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"tape": "^4.6.0",
"webpack": "^1.13.2",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"redux-devtools": "^3.3.1"
}
}