-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.3 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
{
"name": "space-fighter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"watch": "jest --watch src/test/*.js",
"dev": "webpack --mode development",
"build": "webpack --mode production",
"start": "webpack serve --mode development --open"
},
"keywords": [],
"author": "Amita-Roy <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.17",
"babel-eslint": "10.1.x",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"eslint": "6.8.x",
"eslint-config-airbnb-base": "14.1.x",
"eslint-plugin-import": "2.20.x",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.2.0",
"jest": "^26.6.3",
"style-loader": "^2.0.0",
"stylelint": "13.3.x",
"stylelint-config-standard": "20.0.x",
"stylelint-csstree-validator": "^1.9.0",
"stylelint-scss": "3.17.x",
"webpack": "^5.19.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"axios": "^0.21.1",
"jquery": "^3.6.0",
"phaser": "^3.52.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"bower_components",
"shared"
]
}
}