-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 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
{
"name": "@coderscamp2020/project-typescript",
"version": "1.0.0",
"description": "Typescript Game - 2nd group project @CodersCamp2020 by Front Znad Zatoki",
"main": "index.ts",
"scripts": {
"build": "rimraf dist && tsc --noEmit && parcel build index.html --public-url ./",
"clean": "rimraf .cache && rimraf coverage && rimraf dist && rimraf node_modules",
"format": "prettier --config .prettierrc --write \"src/**/*.ts\" \"styles/**/*.scss\" \"test/**/*.ts\" \"**/*.json\" && stylelint --fix \"styles/**/*.{css,scss}\"",
"eslint": "eslint . --ext .ts",
"stylelint": "npx stylelint \"styles/**.scss\"",
"start": "parcel -p 8765 watch index.html",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/Front-znad-zatoki/super-farmer.git"
},
"keywords": [
"CodersCamp",
"FrontZnadZatoki"
],
"author": "Front Znad Zatoki @CodersCamp2020",
"license": "ISC",
"homepage": "https://front-znad-zatoki.github.io/super-farmer/",
"bugs": {
"url": "https://github.com/Front-znad-zatoki/super-farmer/issues"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@testing-library/dom": "^7.29.4",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/user-event": "^12.6.0",
"@types/jest": "22.2.3",
"@types/lodash": "4.14.108",
"@types/node": "^14.14.21",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"cypress": "6.3.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lodash": "^4.17.20",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.5.0",
"postcss-scss": "^3.0.2",
"prettier": "^2.2.1",
"prettier-stylelint": "^0.4.2",
"rimraf": "^3.0.2",
"sass": "^1.32.4",
"stylelint": "^13.9.0",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-order": "^4.1.0",
"stylelint-prettier": "^1.1.2",
"stylelint-scss": "^3.18.0",
"ts-jest": "26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"dotenv": "^8.2.0",
"normalize.css": "^8.0.1",
"regenerator-runtime": "^0.13.7"
},
"jest": {
"testRegex": "(spec|test)[.]ts",
"coverageDirectory": "coverage",
"setupFiles": [
"./test/setupJest.ts"
],
"collectCoverageFrom": [
"./src/**"
]
},
"staticFiles": {
"staticPath": [
{
"staticPath": "static",
"staticOutDir": "static"
}
]
}
}