-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 898 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
38
39
40
41
42
{
"name": "artgallery",
"version": "0.0.0",
"private": true,
"scripts": {
"test": "jest"
},
"dependencies": {
"events": "^1.0.2",
"flux": "^2.1.1",
"lodash": "^3.10.1",
"object-assign": "^4.0.1",
"react": "^0.13.3",
"react-imageloader": "^2.1.0"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-browserify": "^4.0.0",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-uglify": "^0.9.1",
"jest-cli": "^0.5.0",
"jshint-stylish": "^2.0.1",
"react-tools": "^0.13.3",
"reactify": "^1.1.1"
},
"jest": {
"scriptPreprocessor": "__tests__/preprocessor.js",
"globals": {
"__APPDIR__": "<rootDir>/src"
},
"unmockedModulePathPatterns": [
"node_modules/react",
"node_modules/lodash",
"node_modules/object-assign"
]
},
"browserify": {
"transform": [
"reactify"
]
}
}