-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.53 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
{
"name": "tic-tac-no",
"version": "1.0.0",
"description": "Browser based tic-tac-toe game",
"private": true,
"main": "index.js",
"scripts": {
"test": "jest",
"start": "webpack serve --open firefox",
"build": "webpack",
"watch": "jest --watchAll *.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ghidalgo93/tic-tac-no.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ghidalgo93/tic-tac-no/issues"
},
"homepage": "https://github.com/ghidalgo93/tic-tac-no#readme",
"babel": {
"presets": [
"@babel/preset-env"
]
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"babel-core": "^6.26.3",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.1",
"babel-preset-env": "^1.7.0",
"css-loader": "^5.0.1",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"prettier": "2.2.1",
"style-loader": "^2.0.0",
"typescript": "^4.1.2",
"webpack": "^5.5.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"concurrently": "^5.3.0",
"date-fns": "^2.16.1",
"jquery": "^3.5.1"
}
}