-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.78 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
{
"name": "dfederspiel",
"private": true,
"version": "1.0.0",
"description": "static templating system",
"license": "MIT",
"author": "David Federspiel",
"scripts": {
"start": "gulp",
"start:production": "nodemon index.js",
"build": "gulp build",
"test": "jest --detectOpenHandles src"
},
"browsersList": [
"> 1%",
"last 2 versions"
],
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/register": "^7.14.5",
"@babel/runtime": "^7.14.8",
"autoprefixer": "^10.3.1",
"babel-jest": "^27.0.6",
"babelify": "^10.0.0",
"browser-sync": "^2.27.5",
"browserify": "^17.0.0",
"child_process": "^1.0.2",
"colors": "^1.4.0",
"expose-loader": "^3.0.0",
"express": "^4.17.1",
"faker": "^5.5.3",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-git-watch": "^0.1.0",
"gulp-json-srv": "^1.2.0",
"gulp-multi-dest": "^1.3.7",
"gulp-postcss": "^9.0.0",
"gulp-pug": "^5.0.0",
"gulp-sass": "^5.0.0",
"gulp-shell": "^0.8.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"html2pug": "^4.0.0",
"jest": "^27.0.6",
"json-server": "^0.16.3",
"lodash": "^4.17.21",
"node-sass": "^6.0.1",
"nodemon": "^2.0.12",
"path": "^0.12.7",
"quicktype": "^15.0.260",
"sentence-generator": "^1.0.1",
"underscore": "^1.13.1",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"watchify": "^4.0.0"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@popperjs/core": "^2.9.3",
"bootstrap": "^5.1.0",
"es6-promise": "^4.2.8",
"isomorphic-fetch": "^3.0.0",
"jquery": "^3.6.0",
"moment": "^2.29.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"jest": {
"verbose": true,
"testMatch": [
"**/__tests__/**/*.[jt]s?(x)"
],
"transform": {
"^.+\\.js$": "babel-jest"
},
"modulePaths": [
"<rootDir>/node_modules/"
],
"coverageReporters": [
"html"
],
"collectCoverageFrom": [
"src/js/**/*.js"
]
}
}