This repository has been archived by the owner on Jul 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
107 lines (107 loc) · 2.92 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "2017.texascamp.org",
"version": "0.3.0",
"description": "2017 TexasCamp",
"main": "src/index.jsx",
"repository": {
"type": "git",
"url": "https://github.com/TexasCamp/2017.texascamp.org.git"
},
"author": "ADUG",
"contributors": [
{
"name": "Chris",
"email": "[email protected]",
"url": "https://github.com/ccjjmartin"
},
{
"name": "Brandon",
"email": "[email protected]",
"url": "https://github.com/rocketeerbkw"
}
],
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"build": "NODE_ENV=production webpack -p",
"start": "webpack-dev-server --history-api-fallback --host 0.0.0.0 --port 8080",
"start-debug": "webpack --display-error-details",
"host": "NODE_ENV=production node server",
"lint-code": "eslint src",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"precommit": "npm run lint-code"
},
"ava": {
"babel": "inherit",
"require": [
"./test/helpers/dom.js"
]
},
"domains": [
"http://2017.texascamp.org/"
],
"dependencies": {
"breakpoint-sass": "^2.7.0",
"classnames": "^2.2.5",
"compass-mixins": "^0.12.10",
"enzyme": "^2.6.0",
"express": "^4.15.2",
"file-loader": "^0.9.0",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-formio": "^1.0.1",
"react-redux": "^4.4.5",
"react-router-dom": "^4.0.0",
"react-scroll": "^1.4.7",
"react-widgets": "^3.4.6",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"sass-toolkit": "^2.10.0",
"susy": "^2.2.12"
},
"devDependencies": {
"@kadira/storybook": "^2.5.2",
"autoprefixer": "^6.3.7",
"babel-cli": "^6.9.0",
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babel-preset-stage-3": "^6.5.0",
"babel-register": "^6.14.0",
"css-loader": "^0.23.1",
"eslint": "^2.11.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.3.0",
"eslint-plugin-react": "^5.1.1",
"extract-text-webpack-plugin": "^1.0.1",
"favicons-webpack-plugin": "0.0.7",
"html-webpack-plugin": "^2.19.0",
"husky": "^0.12.0",
"js-cookie": "^2.1.3",
"jsdom": "^9.5.0",
"json-loader": "^0.5.4",
"node-sass": "^3.8.0",
"nodemon": "^1.10.2",
"postcss-loader": "^0.9.1",
"react-addons-test-utils": "^15.3.1",
"redux-ava": "^2.1.0",
"redux-mock-store": "^1.2.1",
"resolve-url-loader": "^1.4.4",
"sass-loader": "^4.0.0",
"sinon": "^1.17.6",
"style-ext-html-webpack-plugin": "^3.0.5",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"yaml-loader": "^0.4.0"
}
}