-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.32 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.32 KB
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
84
{
"name": "client",
"version": "0.0.0",
"description": "a Node based client app",
"main": "static_server.js",
"scripts": {
"test": "npm run lint && jest",
"lint": "eslint app __tests__ --ext .js,.jsx",
"start": "node static_server.js",
"build-dev": "webpack --watch --display-reasons --display-error-details --progress --colors --config config/webpack.config.js",
"build": "webpack -p --display-reasons --display-error-details --progress --colors --config config/webpack.config.js"
},
"author": "eSpark",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git@github.com:eSpark/frontier.git"
},
"dependencies": {
"async": "^1.5.2",
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"basic-auth": "^1.0.3",
"config": "^1.17.1",
"css-loader": "^0.23.0",
"express": "^4.13.3",
"file-loader": "^0.8.5",
"history": "~1.13.0",
"j-toker": "0.0.6",
"jade": "^1.11.0",
"jest-cli": "^0.8.0",
"morgan": "^1.6.1",
"mysql": "^2.10.0",
"node-sass": "^3.4.2",
"pubsub-js": "^1.5.3",
"raw-loader": "^0.5.1",
"react": "^0.14.3",
"react-checkbox-group": "^0.3.1",
"react-dom": "^0.14.3",
"react-router": "^1.0.2",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"underscore": "^1.8.3",
"url-loader": "^0.5.6",
"webpack": "^1.12.9"
},
"devDependencies": {
"babel-jest": "^6.0.1",
"babel-preset-es2015": "^6.2.4",
"babel-preset-react": "^6.2.4",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.11.3",
"jest-cli": "^0.8.0",
"jest-webpack-alias": "^2.0.0",
"npm-check-updates": "^2.5.4",
"react-addons-test-utils": "^0.14.3"
},
"jest": {
"scriptPreprocessor": "<rootDir>/config/jest_preprocessor.js",
"testFileExtensions": [
"js",
"jsx"
],
"moduleFileExtensions": [
"js",
"json",
"jsx"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/fbjs"
],
"modulePathIgnorePatterns": [
"<rootDir>/node_modules/"
]
},
"jest-webpack-alias": {
"configFile": "config/webpack.config.js"
}
}