This repository has been archived by the owner on Jan 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.11 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
60
61
62
63
64
65
66
67
68
69
{
"name": "taskfight",
"version": "1.0.0",
"main": "index.html",
"scripts": {
"dev:html": "pug src/index.pug --out www -O {pretty:true}",
"dev:js": "webpack -d -w",
"dev:css": "chokidar '**/*.scss' -c 'npm run build:css'",
"dev": "run-p dev:html dev:js dev:css start",
"build:html": "pug src/index.pug --out www",
"build:js": "NODE_ENV=production webpack -p",
"build:css": "node-sass src/scss/style.scss | postcss -c .postcssrc",
"build": "run-p build:html build:js build:css",
"start": "browser-sync start --config bs-config.js",
"test": "karma start"
},
"author": "Romaric Pascal",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"autobind-decorator": "^1.3.3",
"autoprefixer": "^6.3.7",
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"browser-sync": "^2.13.0",
"chai": "^3.5.0",
"chokidar-cli": "^1.2.0",
"classnames": "^2.2.5",
"connect-history-api-fallback": "^1.2.0",
"cssnano": "^3.7.3",
"es6-error": "^3.0.1",
"history": "^2.1.2",
"json-loader": "^0.5.4",
"karma": "^1.1.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.0.4",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"lodash": "^4.17.2",
"mocha": "^2.5.3",
"node-sass": "^3.8.0",
"node-uuid": "^1.4.7",
"npm-run-all": "^2.2.0",
"postcss-cli": "^2.5.2",
"pug": "^2.0.0-beta3",
"pug-cli": "^1.0.0-alpha6",
"react": "^15.2.0",
"react-addons-css-transition-group": "^15.2.0",
"react-dom": "^15.1.0",
"react-redux": "^4.4.5",
"react-router": "^2.5.2",
"react-router-redux": "^4.0.5",
"redux": "^3.5.2",
"redux-loop": "^2.1.1",
"reselect": "^2.5.3",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"webpack": "^1.13.1"
}
}