-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
97 lines (97 loc) · 3.04 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
{
"name": "hfte",
"version": "1.0.0",
"description": "Holy Fuck The Election",
"scripts": {
"clean": "rimraf dist",
"webpack": "cross-env NODE_ENV=production webpack -p --config webpack.config.prod.js",
"assets": "copy static/* dist && copy favicon.ico dist && copy CNAME dist",
"build:static": "run-s clean webpack assets",
"start": "node devServer.js",
"lint:js": "eslint src --ext .js --ext .jsx",
"lint": "run-s lint:*",
"test": "jest",
"critical": "critical ./dist/index.html --inline --base ./dist -H ./dist/index.html > /dev/null",
"surge": "surge -p dist -d literate-army.surge.sh",
"gh-pages": "gh-pages -d dist",
"deploy": "run-s build:static critical gh-pages",
"precommit": "run-s lint test"
},
"repository": {
"type": "git",
"url": "[email protected]:csb324/holyfucktheelectionistomorrow.git"
},
"license": "MIT",
"homepage": "https://github.com/csb324/holyfucktheelectionistomorrow",
"devDependencies": {
"autoprefixer": "^6.5.2",
"babel-core": "^6.3.15",
"babel-eslint": "^7.1.1",
"babel-jest": "^17.0.2",
"babel-loader": "^6.2.8",
"babel-plugin-lodash": "^3.2.10",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.0.0",
"critical": "^0.8.0",
"cross-env": "^3.1.3",
"css-loader": "^0.26.0",
"dotenv": "^2.0.0",
"eslint": "^3.11.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"eventsource-polyfill": "^0.9.6",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"gh-pages": "^0.12.0",
"html-webpack-plugin": "^2.24.1",
"husky": "^0.11.9",
"jest": "^17.0.3",
"lodash-webpack-plugin": "^0.10.6",
"node-sass": "^3.13.0",
"npm-run-all": "^3.1.1",
"offline-plugin": "^3.4.2",
"postcss-loader": "^1.1.0",
"react-test-renderer": "^15.4.1",
"redux-devtools": "^3.0.1",
"redux-devtools-dock-monitor": "^1.0.1",
"redux-devtools-log-monitor": "^1.1.1",
"redux-logger": "^2.7.4",
"rimraf": "^2.4.3",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.0",
"webpack": "^2.1.0-beta.25",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.2"
},
"dependencies": {
"copy": "^0.3.0",
"file-loader": "^0.9.0",
"preact": "^6.4.0",
"preact-compat": "^3.9.2",
"rc-animate": "^2.3.1",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-redux": "^4.4.6",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"svgo-loader": "^1.1.2",
"url-loader": "^0.5.7"
},
"jest": {
"rootDir": "src",
"moduleFileExtensions": [
"jsx",
"js",
"json"
],
"moduleNameMapper": {
"^.+\\.(jpg|jpeg|png|gif|svg|ttf|woff|woff2)$": "<rootDir>/config/jest/FileStub.js",
"^.+\\.(scss$|css)$": "<rootDir>/config/jest/CSSStub.js"
}
}
}