-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.99 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.99 KB
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
87
88
89
90
91
{
"name": "techpoll",
"version": "0.0.1",
"description": "Interactive tech voting site",
"main": "index.js",
"scripts": {
"start": "concurrently --kill-others \"npm run serve\" \"npm run watch\" \"npm run lint_watch\" \"npm run watch-css\" \"npm run test-watch\"",
"serve": "node server/server.js app",
"watch": "chokidar-socket-emitter",
"test": "karma start --single-run && npm run lint",
"test-watch": "karma start",
"lint_watch": "esw --ignore-pattern \"app/jspm_packages/**/*\" --ignore-pattern \"app/config.js\" -w app/",
"lint": "esw --ignore-pattern \"app/jspm_packages/**/*\" --ignore-pattern \"app/config.js\" app/",
"build-css": "node-sass --include-path app app/app.scss app/app.css",
"watch-css": "nodemon -e scss -x \"npm run build-css\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/mtinning/techpoll.git"
},
"keywords": [
"reactjs",
"redux",
"jspm",
"tech",
"techpoll"
],
"author": "Michael Tinning",
"license": "ISC",
"bugs": {
"url": "https://github.com/mtinning/techpoll/issues"
},
"homepage": "https://github.com/mtinning/techpoll#readme",
"devDependencies": {
"babel-eslint": "^5.0.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"chai": "^3.5.0",
"chokidar-socket-emitter": "^0.5.0",
"concurrently": "^2.0.0",
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.1.0",
"eslint-plugin-react": "^4.2.2",
"eslint-watch": "^2.1.10",
"estraverse-fb": "^1.3.1",
"jspm": "^0.16.31",
"karma": "^0.13.22",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.2",
"karma-jspm": "^2.0.2",
"karma-mocha": "^0.2.2",
"karma-mocha-reporter": "^2.0.0",
"mocha": "^2.4.5",
"node-sass": "^3.4.2",
"nodemon": "^1.9.1"
},
"dependencies": {
"body-parser": "^1.15.0",
"express": "^4.13.4"
},
"jspm": {
"directories": {
"baseURL": "app"
},
"dependencies": {
"immutable": "npm:immutable@^3.7.6",
"jquery": "npm:jquery@^2.2.1",
"material-ui": "npm:material-ui@^0.15.0-alpha.2",
"react": "npm:react@^0.14.7",
"react-addons-test-utils": "npm:react-addons-test-utils@^0.14.7",
"react-dom": "npm:react-dom@^0.14.7",
"react-redux": "npm:react-redux@^4.4.0",
"react-router": "npm:react-router@^2.0.1",
"react-tap-event-plugin": "npm:react-tap-event-plugin@^0.2.2",
"redux": "npm:redux@^3.3.1",
"redux-thunk": "npm:redux-thunk@^2.0.1",
"rxjs": "npm:rxjs@^5.0.0-beta.3",
"scss": "github:mobilexag/plugin-sass@^0.3.0"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"chai": "npm:chai@^3.5.0",
"chai-immutable": "npm:chai-immutable@^1.5.3",
"core-js": "npm:core-js@^1.1.4",
"sinon": "npm:sinon@^1.17.3",
"sinon-chai": "npm:sinon-chai@^2.8.0",
"systemjs-hot-reloader": "github:capaj/systemjs-hot-reloader@^0.5.6"
}
}
}