-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 995 Bytes
/
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
{
"name": "sam-js-timetravel",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"watch": "npm run clean && ./node_modules/.bin/webpack-dev-server --port 1337 --content-base dist --no-info --colors --hot --inline --progress",
"build": "npm run clean && NODE_ENV=production node ./node_modules/.bin/webpack --progress --colors && npm run cp:index",
"clean": "mkdir -p dist && rm -f dist/* && npm run cp:index",
"cp:index": "cp src/index.html dist/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Gunar C. Gessner <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.5.2",
"babel-loader": "^6.2.3",
"babel-preset-es2015": "^6.3.13",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-react": "6.3.13",
"babel-preset-stage-0": "^6.3.13",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
}
}