-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.03 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 3.03 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
85
86
87
{
"name": "PetProject",
"version": "1.0.0",
"description": "Pet Project - 1st Project MTCS",
"scripts": {
"clean": "rimraf dist distServer",
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:dev": "npm-run-all --parallel testonly:watch open:src lint:watch",
"start:prod": "node distserver/tools/srcServer.js",
"open:src": "babel-node tools/srcServer.js",
"lint": "node_modules/.bin/esw webpack.config.* src tools",
"lint:watch": "npm run lint -- --watch",
"test": "npm run lint && npm run testonly",
"testonly": "mocha --reporter progress tools/testSetup.js \"src/**/*.test.js\" \"helpers/*.test.js\"",
"testonly:watch": "npm run testonly -- --watch",
"build": "npm run clean && npm run build:webpack && npm run build:server",
"build:webpack": "NODE_ENV='production' webpack --config webpack.config.babel.js",
"build:server": "babel tools -d distserver/tools --presets es2015 && babel helpers -d distserver/helpers --presets es2015 && babel models -d distserver/models && babel routes -d distserver/routes --presets es2015 && babel webpack.config.babel.js webpack.config.dev.js -d distserver"
},
"author": "Montana Code School",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.23.0",
"body-parser": "^1.17.1",
"bootstrap": "^3.3.7",
"cheerio": "^0.22.0",
"colors": "^1.1.2",
"express": "^4.15.2",
"fs": "0.0.1-security",
"if-env": "^1.0.0",
"jquery": "^3.2.1",
"jsonwebtoken": "^7.3.0",
"mailgun-js": "^0.9.1",
"mobx": "^3.1.8",
"mobx-react": "^4.1.3",
"mongodb-uri": "^0.9.7",
"mongoose": "^4.9.2",
"morgan": "^1.8.1",
"open": "^0.0.5",
"password-hash": "^1.2.2",
"react": "^15.4.2",
"react-bootstrap": "^0.30.8",
"react-dom": "^15.4.2",
"react-facebook": "^2.2.5",
"react-router": "^2.5.2",
"request": "^2.81.0",
"toastr": "^2.1.2",
"webpack": "^2.3.1"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-plugin-react-display-name": "^2.0.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-register": "^6.24.0",
"chai": "^3.5.0",
"cheerio": "^0.22.0",
"compression": "^1.6.2",
"cross-env": "^3.2.4",
"css-loader": "^0.27.3",
"enzyme": "^2.7.1",
"eslint": "^3.18.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.10.3",
"eslint-watch": "^3.0.1",
"eventsource-polyfill": "^0.9.6",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.10.1",
"jsdom": "^9.12.0",
"mocha": "^3.2.0",
"nock": "^9.0.9",
"npm-run-all": "^4.0.2",
"react-addons-test-utils": "^15.4.2",
"rimraf": ">=2.5.2",
"style-loader": ">=0.13.1",
"url-loader": "^0.5.8",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.17.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Montana-Code-School/PetProject"
}
}