-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.65 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "slync",
"version": "0.0.1",
"description": "A slick sync",
"main": "app/main.js",
"scripts": {
"clean": "rimraf data/content/* && mkdirp data/content",
"bundle": "npm-run-all bundle:*",
"prebundle": "npm run clean",
"bundle:static": "cpx \"static/**/*\" data/content",
"bundle:webpack": "NODE_ENV=production webpack",
"bundle:css": "node-sass app/main.scss -o data/content",
"bundle:html": "node ./bin/generate-html.js > data/content/index.html",
"postbundle": "du -hs ./data/content/*",
"start": "npm-run-all --parallel start:*",
"prestart": "npm run clean",
"start:static": "npm run bundle:static -- -w",
"start:webpack": "webpack -w",
"start:css": "npm run bundle:css && npm run bundle:css -- -w",
"start:html": "npm run bundle:html -- --baseUrl http://localhost:1963/ --csp off",
"start:server": "live-server data/content --port=1963 --no-browser",
"lint": "eslint . && jscs . && sass-lint -v -q"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rittme/slync.git"
},
"keywords": [
"activity-stream",
"firefox",
"sync"
],
"author": "Mozilla (https://mozilla.org/)",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/rittme/slync/issues"
},
"homepage": "https://github.com/rittme/slync",
"dependencies": {
"classnames": "2.2.3",
"firebase": "^3.2.0",
"get-youtube-id": "^1.0.0",
"immutable": "^3.8.1",
"moment": "2.11.2",
"react": "0.14.8",
"react-dom": "0.14.8",
"react-json-inspector": "6.1.3",
"react-redux": "4.1.2",
"redux": "3.2.0",
"url-parse": "1.0.5"
},
"devDependencies": {
"babel": "6.3.26",
"babel-core": "6.4.5",
"babel-loader": "6.2.1",
"babel-plugin-transform-es2015-destructuring": "6.4.0",
"babel-plugin-transform-es2015-parameters": "6.4.5",
"babel-plugin-transform-strict-mode": "6.3.13",
"babel-preset-es2015-webpack": "^6.4.1",
"babel-preset-react": "6.3.13",
"chai": "3.5.0",
"conventional-changelog-cli": "1.1.1",
"cpx": "1.2.1",
"eslint": "2.2.0",
"eslint-plugin-mozilla": "0.0.3",
"eslint-plugin-react": "4.1.0",
"husky": "0.10.2",
"istanbul-instrumenter-loader": "0.1.3",
"jpm": "1.0.5",
"jscs": "2.9.0",
"json-loader": "0.5.4",
"live-server": "0.9.1",
"minimist": "1.2.0",
"mkdirp": "0.5.1",
"mocha": "2.4.5",
"node-sass": "3.4.2",
"npm-run-all": "1.5.1",
"react-addons-test-utils": "0.14.7",
"requirejs": "2.1.22",
"rimraf": "2.5.2",
"sass-lint": "1.7.0",
"webpack": "1.12.12",
"webpack-env-loader-plugin": "0.1.4",
"webpack-notifier": "1.2.1"
}
}