-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.56 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
108
109
110
111
112
{
"name": "littlemilk-frontend",
"version": "1.0.0",
"description": "Front end for Little Milk coming soon",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"compile": "node build/scripts/compile",
"build": "npm run clean && NODE_ENV=production npm run compile",
"start": "NODE_ENV=development node build/scripts/start",
"test": "NODE_ENV=test jest -u",
"test:watch": "npm test -- --coverage --watch",
"deploy": "gh-pages -d dist"
},
"repository": "https://github.com/littlemilkstudio/littlemilk-frontend",
"homepage": "https://littlemilkstudio.github.io/littlemilk-frontend",
"author": "Max Yinger",
"license": "MIT",
"jest": {
"roots": [
"<rootDir>/src"
],
"setupFiles": [
"./build/setupTests.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"testURL": "http://localhost/",
"verbose": true,
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|scss|sass)$": "<rootDir>/__mocks__/styleMock.js"
}
},
"devDependencies": {
"autoprefixer": "^9.1.3",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.2",
"babel-loader": "^7.1.5",
"babel-plugin-styled-components": "^1.8.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.26.0",
"chalk": "^2.4.1",
"css-loader": "^1.0.0",
"enzyme": "^3.4.1",
"enzyme-adapter-react-16": "^1.2.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^5.3.0",
"eslint-config-standard": "^12.0.0-alpha.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^21.18.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-standard": "^3.1.0",
"figures": "^2.0.0",
"file-loader": "^2.0.0",
"fs-extra": "^7.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.5.0",
"lost": "^8.3.0",
"mini-css-extract-plugin": "^0.4.1",
"normalize-scss": "^7.0.1",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"postcss-loader": "^3.0.0",
"postcss-px-to-viewport": "^0.0.3",
"postcss-responsive-type": "^1.0.0",
"redbox-react": "^1.6.0",
"regenerator-runtime": "^0.12.1",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.22.1",
"uglifyjs-webpack-plugin": "^1.2.7",
"url-loader": "^1.0.1",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-middleware": "^3.1.3",
"webpack-glsl-loader": "^1.0.1",
"webpack-hot-middleware": "^2.22.3"
},
"dependencies": {
"compression": "^1.7.3",
"express": "^4.16.3",
"gh-pages": "^2.0.1",
"node-sass": "^4.9.3",
"object-assign": "^4.1.1",
"promise": "^8.0.1",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-loadable": "^5.5.0",
"react-pose": "^3.1.0",
"react-pose-text": "^3.1.0",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"reselect": "^3.0.1",
"styled-components": "^4.0.0",
"weakset": "^1.0.0",
"whatwg-fetch": "^2.0.4"
}
}