-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.92 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
{
"name": "monsterzoo",
"version": "1.0.0",
"description": "👹 It's a scary zoo...",
"private": true,
"scripts": {
"build": "webpack --mode production",
"build:develop": "webpack --mode development",
"build:develop:watch": "npm run build:develop -- --watch",
"test": "jest",
"test:coverage": "npm test -- --coverage",
"test:watch": "npm test -- --watch"
},
"keywords": [
"javascript-application",
"school-project"
],
"author": "Jesse van der Pluijm",
"license": "UNLICENSED",
"homepage": "https://github.com/jessevdp/monsterzoo#readme",
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"autoprefixer": "^9.5.1",
"babel-jest": "^24.8.0",
"clean-webpack-plugin": "^2.0.2",
"css-loader": "^2.1.1",
"dotenv-webpack": "^1.7.0",
"eslint": "^5.16.0",
"eslint-loader": "^2.1.2",
"file-loader": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"jest-environment-jsdom-fourteen": "^0.1.0",
"mini-css-extract-plugin": "^0.6.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"raw-loader": "^2.0.0",
"sass-loader": "^7.1.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"mustache": "^3.0.1",
"tooltip.js": "^1.3.2",
"two.js": "^0.7.0-beta.3",
"uuid": "^3.3.2"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"moduleNameMapper": {
"\\.(scss|sass)$": "<rootDir>/jest/styleMock.js",
"\\.(template.html)$": "<rootDir>/jest/templateMock.js",
"\\.mp3$": "<rootDir>/jest/fileMock.js",
"@local(.*)$": "<rootDir>/src/$1"
},
"testEnvironment": "jest-environment-jsdom-fourteen"
}
}