-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.41 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.41 KB
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
{
"name": "mjml-tool",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "NODE_ENV=development nodemon ./bin/www",
"start": "node ./bin/www",
"build": "react-scripts build && grunt && node ./bin/www --inspect",
"build:test": "react-scripts test && react-scripts build && jest && grunt && node ./bin/www --inspect",
"app:test": "jest",
"app:build": "grunt && node ./bin/www --inspect",
"client:clean": "rimraf -r */**/__snapshots__",
"preclient:test": "rimraf -r */**/__snapshots__",
"client:start": "react-scripts start",
"client:build": "react-scripts build && grunt copy",
"client:test": "react-scripts test",
"client:eject": "react-scripts eject"
},
"dependencies": {
"async": "^3.0.1",
"axios": "^0.19.0",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^8.0.0",
"errorhandler": "^1.5.1",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"materialize-css": "^1.0.0",
"method-override": "^3.0.0",
"mjml": "^4.4.0",
"moment": "^2.24.0",
"morgan": "~1.9.1",
"node-sass-middleware": "0.11.0",
"pug": "^2.0.3",
"q": "^1.5.1",
"react": "^16.8.6",
"react-bootstrap": "^1.0.0-beta.9",
"react-datepicker": "^2.8.0",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.1",
"react-scripts": "3.0.1"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/cookie-parser": "^1.4.1",
"@types/errorhandler": "0.0.32",
"@types/express": "^4.17.0",
"@types/jest": "^24.0.15",
"@types/jquery": "^3.3.30",
"@types/materialize-css": "^1.0.6",
"@types/method-override": "0.0.31",
"@types/morgan": "^1.7.35",
"@types/node": "^12.0.12",
"@types/react": "^16.8.23",
"@types/react-datepicker": "^2.8.1",
"@types/react-dom": "^16.8.5",
"@types/react-test-renderer": "^16.8.3",
"grunt": "^1.0.4",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-ts": "^6.0.0-beta.22",
"jest": "24.7.1",
"nodemon": "^1.19.1",
"react-test-renderer": "^16.8.6",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"typescript": "^3.5.2"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}