-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
59 lines (59 loc) · 2.06 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": "dev-dot",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "bash ./scripts/build.sh",
"dev": "bash ./scripts/dev.sh",
"jekyll": "bundle exec jekyll serve",
"docker-build": "docker build -t devdot . && docker run --rm -v \"$(pwd)\":/app -p 4000:4000 -ti devdot npm i",
"docker-run": "docker run -v \"$(pwd)\":/app -p 4000:4000 -ti devdot bash -c \"npm run dev & npm run jekyll\"",
"docker-selenium": "docker run --rm -v \"$(pwd)/scripts\":/usr/local/bin -p 4444:4444 -ti selenium/standalone-chrome /usr/local/bin/selenium.sh",
"pretest": "npm run build && bundle exec jekyll build",
"test": "NODE_ENV=test mocha --compilers js:babel-register --recursive _test/react _test/unit",
"test-web": "bash ./scripts/test-web.sh",
"test-web-bstack": "_test/browser/nightwatch --config _test/browser/nightwatchBrowserStack.json --retries 1",
"lint": "eslint --ext .js,.jsx ./dynamic ./_test"
},
"devDependencies": {
"autoprefixer": "^6.4.0",
"aws-sdk": "^2.5.4",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-strict-mode": "^6.11.3",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-register": "^6.14.0",
"babel-runtime": "^6.11.6",
"babelify": "^7.2.0",
"browserify": "^13.0.1",
"chai": "^3.5.0",
"envify": "^3.4.1",
"eslint": "^3.1.1",
"eslint-plugin-react": "^6.1.2",
"js-yaml": "^3.8.4",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"mocha": "^3.0.2",
"nightwatch": "^0.9.8",
"node-sass": "^3.8.0",
"postcss-cli": "^2.6.0",
"prop-types": "^15.5.10",
"ramda": "^0.22.1",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-markdown": "^2.4.2",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-logger": "^2.6.1",
"request": "^2.74.0",
"swagger-parser": "^3.4.1",
"watch": "^0.19.2",
"watchify": "^3.6.1",
"whatwg-fetch": "^1.0.0"
},
"dependencies": {
"oidc-client": "^1.3.0"
}
}