forked from alisonzthu/hackreact
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 686 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 686 Bytes
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
{
"name": "Hackreact",
"version": "1.0.0",
"description": "A to-do list app for Hackreactor students",
"main": "index.js",
"scripts": {
"dev": "./node_modules/.bin/webpack-dev-server --open"
},
"keywords": [
"react"
],
"author": "Keith Alpichi",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.22.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"react": "^15.2.1",
"react-dom": "^15.2.1",
"uuid": "^3.0.1"
}
}