-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.53 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.53 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
{
"name": "number-switcher-3000",
"version": "1.0.0",
"description": "An app for dealing with dial-in systems",
"engine": {
"npm": "^2.13.2"
},
"scripts": {
"build": "webpack -p && npm run build:assets",
"build:assets": "cp app/robots.txt public/robots.txt && cp -R app/favicons/* public",
"build:dev": "webpack -d && npm run build:assets",
"ci": "npm run lint && npm run build && npm run test",
"lint": "eslint .",
"preinstall": "npm prune",
"postinstall": "selenium-standalone install",
"start": "node api/index.js",
"test": "npm run test:integration && npm run test:system",
"test:integration": "multi='spec=- xunit=integration-test-results.xml' istanbul cover _mocha -- --reporter mocha-multi --compilers js:babel-register test/integration/**/*.js",
"test:system": "scripts/system-test.js",
"watch": "pm2-dev start api/index.js & (npm run build:assets && webpack -d --watch)",
"webpack-bundle-size": "webpack --json | webpack-bundle-size-analyzer"
},
"author": "Jeffrey Charles <jeffreycharles@beyondtechnicallycorrect.com>",
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "https://github.com/jeffcharles/number-switcher-3000"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"bootstrap": "^3.3.7",
"css-loader": "^0.25.0",
"eslint": "^3.9.1",
"eslint-plugin-react": "^6.5.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"istanbul": "^0.4.5",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"mocha": "^3.1.2",
"mocha-multi": "^0.9.1",
"pm2": "^2.0.19",
"portfinder": "^1.0.9",
"selenium-standalone": "^5.8.0",
"style-loader": "^0.13.1",
"supertest": "^2.0.1",
"supertest-as-promised": "^4.0.2",
"url-loader": "^0.5.7",
"wdio-mocha-framework": "^0.5.2",
"webdriverio": "^4.3.0",
"webpack": "^1.13.3",
"webpack-bundle-size-analyzer": "^2.2.0"
},
"dependencies": {
"aws-sdk": "^2.6.15",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.18.0",
"body-parser": "^1.15.2",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"express": "^4.14.0",
"hbs": "^4.0.1",
"immutable": "^3.8.1",
"rc": "^1.1.6",
"react": "^15.3.2",
"react-bootstrap": "^0.30.6",
"react-dom": "^15.3.2",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"superagent": "^2.3.0",
"xml2js": "^0.4.17"
}
}