-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.04 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": "tic-tac-toe-flux",
"version": "0.0.4",
"description": "tic-tac-toe-flux: ...",
"author": "",
"license": "MIT",
"devDependencies": {
"babel-jest": "^5.2.0",
"babelify": "^6.1.0",
"browserify": "^10.1.3",
"gulp": "^3.8.7",
"gulp-connect": "^2.2.0",
"gulp-sass": "^2.0.1",
"gulp-util": "^3.0.4",
"jest-cli": "^0.4.3",
"reactify": "^1.1.1",
"require-dir": "^0.3.0",
"smart-css": "^1.1.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.2.1"
},
"scripts": {
"dev": "gulp --type dev",
"start": "gulp",
"build": "gulp build",
"test": "jest"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
]
},
"dependencies": {
"flux": "^2.0.3",
"lodash": "^3.8.0",
"object-assign": "^2.0.0",
"react": "^0.13.3",
"react-bootstrap": "^0.22.0",
"tinycolor2": "^1.1.2"
}
}