-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.37 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
{
"homepage": "https://jovani-x.github.io/tictactoe/",
"name": "tictactoe",
"version": "1.0.0",
"description": "tictactoe game (react tutorial)",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "webpack-dev-server --mode development && cp src/index.html dist/index.html",
"build": "webpack --mode production && cp src/index.html dist/index.html",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>src/setupTests.js"
],
"forceCoverageMatch": [
"**/*.test.js"
],
"transformIgnorePatterns": [
"/node_modules/"
],
"moduleNameMapper": {
"\\.(css|less|scss)$": "identity-obj-proxy"
}
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"gh-pages": "^6.1.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-hot-loader": "^4.3.11",
"sass": "^1.74.1",
"sass-loader": "^14.1.1",
"style-loader": "^4.0.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}