-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1021 Bytes
/
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
{
"name": "ttt_react",
"version": "1.0.0",
"description": "Tic Tac Toe with React",
"main": "app.js",
"scripts": {
"test": "mocha --require babel-register vendor/ttt/tests/**/*.test.js",
"build": "webpack",
"watch": "webpack-dev-server --content-base dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/laurentqro/ttt_react.git"
},
"author": "Laurent Curau",
"license": "MIT",
"bugs": {
"url": "https://github.com/laurentqro/ttt_react/issues"
},
"homepage": "https://github.com/laurentqro/ttt_react#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"css-loader": "^0.28.11",
"mocha": "^5.2.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"style-loader": "^0.21.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.6",
"webpack-dev-server": "^3.1.4"
}
}