forked from neopoly/tic_tac_toe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.44 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
{
"name": "ultimate-tic-tac-toe",
"version": "1.0.0",
"description": "Browser based Ultimate Tic Tac Toe",
"main": "index.js",
"scripts": {
"start": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --progress --colors --mode development",
"test": "node ./node_modules/mocha/bin/mocha test/**/test.js --require babel-register test\\**\\*_test.js",
"webpack": "node ./node_modules/webpack/bin/webpack.js --mode production"
},
"repository": {
"type": "git",
"url": "https://github.com/LBBO/ultimate-tic-tac-toe.git"
},
"author": "Michael David Kuckuk",
"license": "ISC",
"bugs": {
"url": "https://github.com/neopoly/tic_tac_toe/issues"
},
"homepage": "https://LBBO.github.io/ultimate-tic-tac-toe/",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.0",
"cheerio": "^1.0.0-rc.2",
"css-loader": "^0.28.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"file-loader": "^1.1.0",
"mocha": "^5.2.0",
"mocha-loader": "^1.1.0",
"node-sass": "^4.14.0",
"nyc": "^13.0.1",
"sass-loader": "^7.0.3",
"sinon": "^6.0.1",
"sinon-chai": "^3.2.0",
"style-loader": "^0.21.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.0.3",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"react": "^16.4.0",
"react-dom": "^16.13.1"
}
}