forked from antsukanova/Brewtal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.98 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
{
"name": "brewtal",
"version": "1.1.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/VernonHawk/Brewtal"
},
"bugs": {
"url": "https://github.com/VernonHawk/Brewtal/issues"
},
"license": "gpl-3.0",
"main": "start.js",
"engines": {
"node": "10.2.1",
"npm": "6.0.1"
},
"scripts": {
"dev-server": "nodemon start.js",
"dev-client": "node scripts/start.js",
"start": "node start.js",
"build": "node scripts/build.js",
"test": "nyc mocha --recursive test --timeout 10000"
},
"nodemonConfig": {
"ignore": [
"client/**",
"test/**",
"public/**"
]
},
"dependencies": {
"aws-sdk": "^2.248.1",
"dom-to-image": "^2.6.0",
"express": "^4.16.3",
"helmet": "^3.12.1",
"jquery": "^3.3.1",
"jquery-ui": "^1.12.1",
"materialize-css": "^0.100.2",
"promise": "^8.0.1"
},
"devDependencies": {
"autoprefixer": "^8.5.1",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-runtime": "^6.26.0",
"case-sensitive-paths-webpack-plugin": "^2.1.2",
"chai": "^4.1.2",
"chalk": "^2.4.1",
"css-loader": "^0.28.11",
"dotenv": "^5.0.1",
"dotenv-expand": "^4.2.0",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.12.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"jsdom": "^11.11.0",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.17.0",
"nodemon": "^1.17.5",
"nyc": "^12.0.2",
"postcss-flexbugs-fixes": "^3.3.1",
"postcss-loader": "^2.1.5",
"react-dev-utils": "^5.0.1",
"style-loader": "^0.21.0",
"supertest": "^3.1.0",
"sw-precache-webpack-plugin": "^0.11.5",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"webpack": "^3.12.0",
"webpack-dev-server": "^2.9.4",
"webpack-manifest-plugin": "^2.0.3"
},
"proxy": "http://localhost:3000"
}