-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.41 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
{
"name": "tictactoe-react",
"author": "Mathieu Davy",
"version": "1.0.0",
"description": "A Tic Tac Toe game in react ",
"main": "public/index.html",
"scripts": {
"build": "webpack -d",
"clean": "rm -rf public/js/*",
"dev": "parallelshell 'webpack -d --watch' 'rackup'",
"ensuredir": "mkdir -p public/js",
"prebuild": "npm run ensuredir && npm run clean",
"predev": "npm run ensuredir && npm run clean",
"start": "rackup",
"test:unit": "NODE_ENV=test _mocha --reporter spec --require babel-register test/unit/**/*.js",
"test:jest": "jest",
"test": "npm run test:unit && npm run test:jest"
},
"jest": {
"verbose": true,
"testRegex": "/test/jest/.*\\.js$"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-jest": "^20.0.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"dotenv": "^4.0.0",
"eslint": "^3.19.0",
"eslint-plugin-react": "^6.10.3",
"firebase": "^4.1.2",
"jest": "^20.0.1",
"localforage": "^1.5.0",
"mocha": "^3.4.1",
"parallelshell": "^2.0.0",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.4",
"react-test-renderer": "^15.5.4",
"redux": "^3.6.0",
"redux-persist": "^4.8.0",
"should": "^11.2.1",
"webpack": "^2.5.1"
}
}