-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
66 lines (66 loc) · 1.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
{
"name": "JS-Capstone",
"version": "1.0.0",
"description": "Capstone project in the JavaScript course in Microverse",
"main": "index.js",
"scripts": {
"test": "jest",
"jest-watch": "jest --watch",
"jest-init": "jest --init",
"install-web": "npm install --save-dev webpack",
"build": "webpack",
"watch": "webpack --watch",
"npx-fix": "npx eslint src/ --fix",
"start": "node server.js",
"heroku-postbuild": "webpack -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phalado/JS-Capstone.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/phalado/JS-Capstone/issues"
},
"homepage": "https://github.com/phalado/JS-Capstone#readme",
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"setupFiles": [
"jest-canvas-mock"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleNameMapper": {
"\\.(css|less|sass|scss)$": "<rootDir>/test/mocks/styleMock.js",
"\\.(gif|ttf|eot|svg|png)$": "<rootDir>/test/mocks/fileMock.js"
}
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"express": "^4.17.1",
"jest": "^25.1.0",
"jest-canvas-mock": "^2.2.0",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"express": "^4.17.1",
"phaser": "^3.22.0",
"phaser3-project-template": "^1.0.9"
}
}