-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 2.01 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "seed",
"version": "1.0.0",
"description": "Seed for webpack",
"main": "app.js",
"dependencies": {
"@cycle/dom": "^10.0.2",
"@cycle/isolate": "^1.4.0",
"@cycle/rxjs-adapter": "^3.0.1",
"@cycle/rxjs-run": "^3.0.2",
"@cycle/xstream-run": "^3.0.3",
"es6-shim": "^0.35.0",
"jquery": "^2.2.4",
"rxjs": "^5.0.0-beta.9",
"whatwg-fetch": "^1.0.0",
"xstream": "^5.0.6"
},
"devDependencies": {
"bootstrap-sass": "^3.3.6",
"cpy": "^4.0.1",
"cpy-cli": "^1.0.1",
"rimraf": "^2.5.2",
"file-loader": "^0.8.5",
"node-sass": "^3.7.0",
"npm-run-all": "^2.3.0",
"bootstrap-loader": "^1.0.10",
"css-loader": "^0.23.1",
"resolve-url-loader": "^1.4.3",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"ts-loader": "^0.8.2",
"url-loader": "^0.5.7",
"typescript": "^1.8.10",
"webpack": "^2.1.0-beta.15",
"webpack-dev-server": "^2.1.0-beta.0",
"webpack-validator": "^2.2.2"
},
"scripts": {
"postinstall": "typings install && npm run validate",
"prestart": "npm run clean-and-copy",
"start": "webpack-dev-server --env.dev --content-base dist --inline --hot",
"prebuild": "npm run clean-and-copy",
"build": "webpack --env.dev",
"prebuild:prod": "npm run clean-and-copy",
"build:prod": "webpack --env.prod -p",
"validate": "npm-run-all --parallel validate-webpack:* lint",
"validate-webpack:dev": "webpack-validator webpack.config.js --env.dev",
"validate-webpack:prod": "webpack-validator webpack.config.js --env.prod",
"clean-dist": "rimraf -rf dist/*",
"copy-files": "cpy src/index.html src/*.png src/*.css dist",
"clean-and-copy": "npm run clean-dist && npm run copy-files",
"lint": "tslint src/**/*.ts",
"watch:test": "npm test -- --auto-watch --no-single-run",
"test": "echo \"Using browser test suite\" && exit 1",
"setup": "npm install && typings install && npm run validate"
},
"author": "Andrew Clifford Greenberg wizardwerdna@gmail.com",
"license": "MIT"
}