-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.74 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
{
"name": "showstubs-ticket-mailer-client",
"version": "2.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=8.0.0"
},
"private": true,
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/src/setupTests.js",
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules"
],
"globals": {
"NODE_ENV": true,
"API": true
}
},
"scripts": {
"start": "node server.babel.js",
"local": "NODE_ENV=local webpack-dev-server --config ./webpack/development.babel.js",
"dev": "NODE_ENV=development webpack-dev-server --config ./webpack/development.babel.js",
"staging": "NODE_ENV=staging webpack-dev-server --config ./webpack/development.babel.js",
"prod": "NODE_ENV=production yarn start",
"build": "NODE_ENV=production webpack --config ./webpack/production.babel.js",
"test": "NODE_ENV=test jest --verbose"
},
"author": "Adam Bohannon",
"license": "ISC",
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/polyfill": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-loader": "^8.0.4",
"antd": "^3.8.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"express": "^4.16.4",
"helmet": "^3.15.0",
"history": "^4.7.2",
"html-webpack-plugin": "^3.2.0",
"isomorphic-fetch": "^2.2.1",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"normalize.css": "^8.0.0",
"path": "^0.12.7",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-hot-loader": "^4.3.4",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"style-loader": "^0.22.1",
"styled-components": "^3.4.2",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-merge": "^4.1.4"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@babel/preset-stage-0": "^7.0.0",
"assets-webpack-plugin": "^3.9.7",
"babel-core": "^7.0.0-bridge",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.6.0",
"compression-webpack-plugin": "^2.0.0",
"enzyme": "^3.4.2",
"enzyme-adapter-react-16": "^1.2.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-babel-module": "^5.0.0-beta.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.5.0",
"redux-logger": "^3.0.6",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack-dev-server": "^3.1.10"
}
}