-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 978 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 978 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
30
31
32
33
34
35
36
{
"name": "sora",
"version": "1.0.0",
"description": "reactjs fundamentals curriculum",
"main": "index.js",
"scripts": {
"format": "prettier --single-quote --print-width=120 --no-semi --write ./**.js ./app/**.js ./app/**/**.js",
"production": "webpack -p",
"start": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeffreyxchan/Sora.git"
},
"author": "Jeffrey Chan",
"license": "ISC",
"bugs": {
"url": "https://github.com/jeffreyxchan/Sora/issues"
},
"homepage": "https://github.com/jeffreyxchan/Sora#readme",
"dependencies": {
"axios": "^0.13.1",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-router": "^2.6.0"
},
"devDependencies": {
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-preset-react": "^6.11.1",
"html-webpack-plugin": "^2.22.0",
"prettier": "^1.9.2",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
}
}