-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.37 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.37 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": "piro",
"version": "1.0.0",
"description": "A scoring app.",
"main": "index.js",
"engines": {
"node": "6.2.1"
},
"standard": {
"parser": "babel-eslint"
},
"scripts": {
"start": "node ./server/bin/www",
"start:watch": "nodemon ./server/bin/www",
"test:client": "cd client && babel-tape-runner test/*.js | tap-spec",
"test:server": "cd server && tape test/utils-test.js | tap-spec",
"database": "cd server && knex migrate:rollback && knex migrate:latest && knex seed:run",
"test": "npm run lint && npm run test:client",
"build": "cd client && webpack --progress --profile --colors",
"build:watch": "cd client && webpack --progress --profile --colors --watch",
"lint": "standard --fix",
"dev": "cd client && webpack-dev-server --hot --inline --history-api-fallback"
},
"keywords": [
"Piro",
"scoring"
],
"author": "Piro",
"license": "MIT",
"dependencies": {
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"bcryptjs": "^2.3.0",
"body-parser": "^1.15.2",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"css-loader": "^0.23.1",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"file-loader": "^0.9.0",
"immutable": "^3.8.1",
"knex": "^0.11.9",
"memory-cache": "^0.1.6",
"moment": "^2.14.1",
"njwt": "^0.3.1",
"node-sass": "^3.8.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pg": "^6.0.3",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-mdl": "^1.6.1",
"react-redux": "^4.4.5",
"react-router": "^2.6.0",
"react-skylight": "^0.4.0",
"react-timeout": "^1.0.0",
"react-widgets": "^3.4.3",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"sass-loader": "^4.0.0",
"secure-random": "^1.1.1",
"serve-favicon": "^2.3.0",
"socket.io": "^1.4.8",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"babel-tape-runner": "^2.0.1",
"enzyme": "^2.4.1",
"nightwatch": "^0.9.6",
"nodemon": "^1.10.0",
"react-addons-test-utils": "^15.2.1",
"standard": "^7.1.2",
"superagent": "^2.1.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.0",
"webpack-dev-server": "^1.14.1"
}
}