-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.69 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
{
"name": "LAReporter-service",
"version": "0.1.0",
"description": "Learning Analytics Report Provider",
"author": "Stein Sorhus <[email protected]>",
"scripts": {
"test-react": "jest test/react",
"test-client": "mocha --compilers js:babel/register test/client",
"test-server": "mocha test/server",
"debug-test-client": "mocha --debug-brk --compilers js:babel/register test/client",
"debug-test-server": "mocha --debug-brk test/server",
"start": "node LAReportServer.js",
"build": "webpack --config webpack.build.config.js",
"watch": "webpack-dev-server --config webpack.dev.config.js"
},
"dependencies": {
"dotenv": "^1.1.0",
"express": "*",
"gulp": "*",
"gulp-babel": "*",
"highlight.js": "^8.5.0",
"react": "^0.13.2",
"react-highlight": "^0.4.1",
"react-tools": "^0.13.2",
"typed": "git+http://gitlab.steinsorhus.com/steinso/typedjs.git"
},
"devDependencies": {
"autoprefixer-loader": "^1.2.0",
"babel": "^5.1.10",
"babel-core": "^5.1.10",
"babel-loader": "^5.0.0",
"css-loader": "^0.10.1",
"es6-promise": "^2.0.1",
"extract-text-webpack-plugin": "^0.5.0",
"jest-cli": "^0.4.1",
"lodash": "^3.8.0",
"mocha": "*",
"react": "^0.13.2",
"react-hot-loader": "^1.2.6",
"request": "^2.53.0",
"should": "^5.0.1",
"style-loader": "^0.12.1",
"url-loader": "^0.5.5",
"webpack": "^1.8.11",
"webpack-dev-server": "^1.8.2"
},
"jest": {
"scriptPreprocessor": "<rootDir>/reactTestPreprocessor.js",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
],
"testDirectoryName": "react",
"testPathDirs": [
"<rootDir>/test/"
]
}
}