-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.11 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
{
"name": "poetion",
"version": "1.0.0",
"description": "Our hackathon project to make beautiful visualizations of poetry",
"main": "index.js",
"scripts": {
"build": "rm -rf dist && babel ./src/server/index.js -d dist/ --watch src/",
"webpack:server": "webpack --debug --devtool=eval --watch",
"start:dev": "nodemon dist/server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danisyellis/Poetion.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/danisyellis/Poetion/issues"
},
"homepage": "https://github.com/danisyellis/Poetion#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"extract-text-webpack-plugin": "^3.0.2",
"nodemon": "^1.12.1",
"webpack": "^3.8.1"
},
"dependencies": {
"express": "^4.16.2",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-router-dom": "^4.2.2"
}
}