-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.23 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "react_examples",
"version": "1.0.0",
"description": "Boilerplate code for a React based UI",
"main": "src/app.jsx",
"dependencies": {
"babel-core": "^6.7.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"css-loader": "^0.23.1",
"fbemitter": "^2.0.2",
"file-loader": "^0.8.5",
"flux": "^2.1.1",
"font-awesome-webpack": "^0.0.4",
"history": "^2.0.1",
"jquery": "^2.2.3",
"leaflet-draw": "^0.3.0",
"lodash": "^4.9.0",
"mapbox.js": "^2.3.0",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-router": "^2.0.1",
"semantic-ui": "^2.1.8",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7"
},
"devDependencies": {
"babel-cli": "^6.6.4",
"babel-helper-get-function-arity": "^6.6.5",
"babel-jest": "^9.0.3",
"babel-runtime": "^6.6.1",
"babel-template": "^6.7.0",
"core-js": "^2.2.1",
"eslint": "^2.8.0",
"fill-range": "^2.2.3",
"for-in": "^0.1.4",
"graceful-fs": "^4.1.3",
"gulp": "^3.9.1",
"jest": "^0.1.40",
"jest-cli": "^11.0.2",
"json-loader": "^0.5.4",
"number-is-nan": "^1.0.0",
"react-addons-test-utils": "^0.14.7",
"to-fast-properties": "^1.0.2",
"webpack": "^1.12.14",
"webpack-babel-jest": "^1.0.4",
"webpack-dev-server": "^1.14.1"
},
"scripts": {
"test": "jest ./src/__tests__",
"testdbg": "node debug --harmony ./node_modules/jest-cli/bin/jest.js --runInBand ",
"build": "node_modules/webpack/bin/webpack.js"
},
"jest": {
"testPathDirs": [
"<rootDir>/src/__tests__"
],
"scriptPreprocessor": "<rootDir>/node_modules/webpack-babel-jest",
"testFileExtensions": [
"js"
],
"modulePathIgnorePatterns": [
"/src\/semantic\/dist/"
],
"moduleFileExtensions": [
"js",
"json",
"jsx"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/jquery",
"<rootDir>/node_modules/mapbox.js",
"<rootDir>/node_modules/lodash"
],
"verbose": true
},
"author": "Fortitude Technologies",
"license": "ISC"
}