-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 2 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
{
"name": "vector-storm",
"description": "Vector Storm – Abstract 2D space shooter",
"author": "Christian Oellers",
"license": "MIT",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "npx webpack",
"start": "npx webpack serve",
"watch": "npx webpack --watch",
"lint:ts": "npx flow",
"lint:scss": "npx stylelint 'src/**/*.scss' --syntax scss",
"prettier:check": "prettier --check \"src/**/*.{ts,scss}\"",
"prettierc:clean": "prettier --write \"src/**/*.{ts,scss}\"",
"test:jest": "npx jest",
"test:jest:coverage": "npx jest --coverage",
"project:clean": "rm -rf node_modules"
},
"dependencies": {
"bootstrap": "^4.5.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@types/jest": "^24.9.1",
"@types/node": "^12.19.5",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.3.2",
"css-loader": "^5.0.1",
"css-minimizer-webpack-plugin": "^1.1.5",
"eslint": "^7.13.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"extract-loader": "^5.1.0",
"file-loader": "^6.2.0",
"flow-bin": "^0.119.1",
"flow-typed": "^3.2.1",
"htmlhint": "^0.14.2",
"node-sass": "^4.14.1",
"prettier": "^2.1.2",
"prettier-eslint": "^11.0.0",
"sass": "^1.29.0",
"sass-loader": "^10.1.0",
"serve": "^11.3.2",
"stylelint": "^13.8.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.18.0",
"ts-loader": "^8.0.11",
"tslib": "^2.0.1",
"typescript": "^3.9.7",
"webpack": "^5.6.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
}
}