-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.8 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
{
"name": "stream-assist",
"version": "0.1.0",
"description": "4stream frontend",
"private": "true",
"license": "UNLICENSED",
"author": "Timofeev Vlad",
"scripts": {
"server": "node server.js",
"server-production": "PRODUCTION=1 node server.js",
"build": "SA_PROTOCOL=https SA_HOST=4stream.ru TWITCH_APP_ID=39j86ipnbij9kf80phu84sx9r6avp0v webpack --config webpack.production.config.js",
"build-local": "SA_PROTOCOL=http SA_HOST=localhost TWITCH_APP_ID=dri15wvh9i32a31utyul6dtzt16dohm webpack --config webpack.production.config.js",
"build-test": "SA_PROTOCOL=http SA_HOST=54.194.36.174 TWITCH_APP_ID=imu5msnrxv2p4lz49swxx02r1ewtw1b webpack --config webpack.production.config.js",
"test": "jest",
"clean": "rm -rf build",
"reset": "rm -rf build node_modules && npm i && npm run build",
"lint": "eslint .",
"csscomb": "csscomb src/stylesheets"
},
"jest": {
"unmockedModulePathPatterns": [
"<rootDir>/src/alt.js",
"<rootDir>/src/actions",
"<rootDir>/node_modules/alt",
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/babel.*"
]
},
"devDependencies": {
"copy-webpack-plugin": "^3.0.1",
"eslint": "^1.6.0",
"eslint-config-airbnb": "0.1.0",
"eslint-plugin-react": "^4.2.3",
"html-webpack-plugin": "^2.22.0",
"jest-cli": "^12.0.2",
"react-addons-test-utils": "^15.0.2",
"react-hot-loader": "^1.3.0",
"webpack-bundle-size-analyzer": "^2.0.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"alt": "^0.18.3",
"alt-container": "^1.0.2",
"alt-utils": "^1.0.0",
"animate.css": "^3.5.2",
"autoprefixer": "^6.0.2",
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.3",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"chart.js": "^1.1.1",
"classnames": "^2.2.3",
"css-loader": "^0.23.0",
"express": "^4.12.3",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"jquery": "^1.12.4",
"jquery.cookie": "^1.4.1",
"json-loader": "^0.5.4",
"moment": "^2.12.0",
"moment-timezone": "^0.5.4",
"node-sass": "^3.4.2",
"postcss-loader": "^0.9.1",
"react": "^15.0.2",
"react-addons-css-transition-group": "^15.0.2",
"react-chartjs": "^0.8.0",
"react-cookie": "^0.4.5",
"react-datepicker": "^0.29.0",
"react-dom": "^15.0.2",
"react-notifications": "^1.0.0",
"react-router": "^2.0.0",
"react-tooltip": "^2.0.2",
"request": "^2.69.0",
"sass-loader": "^3.1.2",
"sprintf-js": "^1.0.3",
"style-loader": "^0.13.1",
"webfontloader": "^1.6.26",
"webpack": "^1.12.12",
"whatwg-fetch": "^1.0.0"
}
}