-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.82 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": "@tmqps78/fontest",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test jest",
"test:cover": "npm run test --coverage",
"test:clean": "rm -rf ./coverage",
"build": "cross-env NODE_ENV=production webpack --config config/webpack.config.prod.js --color -p --progress --hide-modules --display-optimization-bailout",
"build:clean": "rm -rf ./dist",
"start": "cross-env NODE_ENV=development node server",
"start:production": "npm run build && npm run start:prod",
"start:prod": "cross-env NODE_ENV=production node server",
"start:forever": "npm run build && npm run start:for",
"start:for": "NODE_ENV=production forever start server",
"clean:all": "npm run test:clean && npm run build:clean"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^8.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.0",
"compression": "^1.7.2",
"cross-env": "^5.1.3",
"css-loader": "^0.28.10",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"express": "^4.16.2",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.9",
"fontfaceobserver": "^2.0.13",
"html-webpack-plugin": "^2.30.1",
"immutability-helper": "^2.6.5",
"jest": "^22.4.2",
"multer": "^1.3.0",
"node": "^9.5.0",
"node-sass": "^4.7.2",
"nodemon": "^1.15.1",
"postcss-loader": "^2.1.1",
"prop-types": "^15.6.0",
"react-hot-loader": "^3.1.3",
"redux-immutable-state-invariant": "^2.1.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.20.2",
"url-loader": "^0.6.2",
"webpack": "^3.11.0",
"webpack-dev-middleware": "^2.0.6",
"webpack-hot-middleware": "^2.21.0"
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.2",
"chalk": "^2.3.1",
"classnames": "^2.2.5",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-dropzone": "^4.2.9",
"react-icons": "^2.2.7",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/tools/mocks/fileMock.js",
".*\\.(css|less|styl|scss|sass)$": "<rootDir>/tools/mocks/cssMock.js"
}
}
}