-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.1 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
{
"name": "LFSG",
"version": "1.0.0",
"description": "Learning Full Stack Game",
"main": "server.js",
"scripts": {
"start-server": "node ./server.js",
"start": "npm run start-server",
"test-frontend": "./node_modules/.bin/mocha-phantomjs ./game/game.html",
"test-backend": "mocha index.test.js -w",
"test": "npm run test-backend"
},
"jest": {
"scriptPreprocessor": "test/preprocessor.js",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"assert": "^1.3.0",
"blanket": "^1.1.9",
"browserify": "^12.0.1",
"casper": "^0.1.1",
"chai": "^3.4.0",
"expect": "^1.12.2",
"fs": "0.0.2",
"http": "0.0.0",
"mocha": "^2.3.3",
"mocha-phantomjs": "^4.0.1",
"nodemon": "^1.8.1",
"phantomjs": "^1.9.18",
"should": "^7.1.1",
"sinon": "^1.17.2"
},
"devDependencies": {
"watchify": "^3.6.0",
"express": "^4.13.3",
"jquery": "^2.1.4",
"mocha": "^2.3.3",
"request": "^2.65.0",
"superagent": "^1.4.0",
"supertest": "^1.1.0"
}
}