-
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) · 755 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 755 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": "react-test",
"version": "0.0.0",
"description": "get react working",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/jonatmark43/react-test.git"
},
"dependencies": {
"css-loader": "^0.9.1",
"react": "^0.12.2",
"style-loader": "^0.8.3"
},
"devDependencies": {
"http-server": "^0.7.5",
"jsx-loader": "^0.12.2",
"webpack": "^1.7.2",
"webpack-dev-server": "^1.7.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run serve | npm run dev",
"serve": "./node_modules/.bin/http-server -p 8080",
"dev": "webpack-dev-server --progress --colors --port 8090"
},
"author": "Jon Beller",
"license": "ISC"
}