-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.15 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
{
"name": "example",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"prestart": "rm -rf app/build",
"start": "webpack-dev-server --inline --progress --colors --content-base app/",
"prebuild": "rm -rf dist",
"build": "webpack --progress --colors",
"prepublish": "webpack --progress --colors --config ./webpack.prod.config.js",
"publish": "gh-pages -t -d ./dist"
},
"author": "Blaine Schmeisser",
"license": "Unlicense",
"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-class-properties": "^6.16.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"copy-webpack-plugin": "^4.0.1",
"gh-pages": "^0.11.0",
"html-webpack-plugin": "^2.30.1",
"raw-loader": "^0.5.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"classnames": "^2.2.5",
"file-loader": "^1.1.5",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"trie": "^0.2.1"
}
}