-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.22 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
{
"name": "surveyapp",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"test": "npm run test:jest && npm run test:mocha",
"test:jest": "$(npm bin)/jest",
"test:mocha": "NODE_ENV=test $(npm bin)/mocha test-mocha",
"build": "npm run build:main && npm run build:admin",
"build:main": "$(npm bin)/browserify -t [ babelify --presets [ es2015 react ] ] ./public/javascripts/main.js -o ./public/build/bundle.js",
"build:admin": "$(npm bin)/browserify -t [ babelify --presets [ es2015 react ] ] ./public/javascripts/admin.js -o ./public/build/bundle-admin.js"
},
"dependencies": {
"babel-cli": "^6.4.0",
"babel-preset-react": "^6.3.13",
"babelify": "^7.2.0",
"basic-auth": "^1.0.3",
"body-parser": "~1.13.2",
"bootstrap": "^3.3.6",
"browserify": "^12.0.1",
"chart.js": "^1.0.2",
"classnames": "^2.2.3",
"cookie-parser": "~1.3.5",
"debug": "~2.2.0",
"express": "~4.13.1",
"flux": "^2.1.1",
"history": "^1.17.0",
"jade": "~1.11.0",
"jquery": "^2.2.0",
"lodash": "^3.10.1",
"morgan": "~1.6.1",
"mysql": "^2.10.0",
"node-uuid": "^1.4.7",
"react": "^0.14.6",
"react-addons-update": "^0.14.6",
"react-chartjs": "^0.6.0",
"react-dom": "^0.14.6",
"react-router": "^1.0.3",
"sequelize": "^3.17.1",
"sequelize-cli": "^2.2.1",
"serve-favicon": "~2.3.0"
},
"devDependencies": {
"babel-jest": "^6.0.1",
"babel-preset-es2015": "^6.3.13",
"chai": "^3.4.1",
"chai-http": "^1.0.0",
"eslint-plugin-react": "^3.14.0",
"jest-cli": "^0.8.2",
"mocha": "^2.3.4",
"react-addons-test-utils": "^0.14.6"
},
"jest": {
"testPathDirs": [
"public/javascripts"
],
"unmockedModulePathPatterns": [
"./node_modules/react",
"./node_modules/react-dom",
"./node_modules/react-addons-test-utils",
"./node_modules/flux",
"./node_modules/lodash",
"./node_modules/jquery",
"./node_modules/classnames",
"./node_modules/react-chartjs"
],
"scriptPreprocessor": "./node_modules/babel-jest",
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
]
}
}