-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
88 lines (88 loc) · 3.11 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
80
81
82
83
84
85
86
87
88
{
"name": "devgaido",
"version": "1.0.0",
"description": "Chingu Learning Path application",
"main": "package.json",
"repository": "https://github.com/Chingu-cohorts/devgaido.git",
"author": "Francesco Agnoletto, Kim Kwanka, Matt Leonard, Jim Medlock, Erik Hos, Oussama Bouguerne",
"license": "MIT",
"scripts": {
"start": "yarn run build && node ./dist/server",
"build": "yarn copyassets && yarn run build:server && yarn run build:client",
"build:client": "webpack -p --config webpack.config.js",
"build:server": "NODE_ENV=production webpack --config webpack.server.config.js",
"dev": "yarn run copyassets && npm-run-all --parallel dev:client dev:server",
"dev:server": "webpack --config webpack.server.config.js --display-error-details",
"dev:client": "webpack-dev-server",
"copyassets": "rimraf ./dist && mkdirp ./dist/public && ncp ./src/client/assets/ ./dist/public/",
"analyzesize": "webpack -p --config webpack.config.js --json | webpack-bundle-size-analyzer",
"screenshots": "node ./src/server/screenshots",
"test": "mocha --require ./test/helper.js '+(test|validate)/**/*Spec.js'"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.24.1",
"chai": "^4.0.0",
"css-loader": "^0.28.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"mocha": "^3.4.2",
"npm-run-all": "^4.0.2",
"react": "^16.0.0",
"react-hot-loader": "3.0.0-beta.6",
"redux-logger": "^3.0.1",
"start-server-webpack-plugin": "^2.2.0",
"style-loader": "^0.16.1",
"webpack": "^3.5.4",
"webpack-dev-server": "^2.4.4",
"webpack-node-externals": "^1.5.4"
},
"dependencies": {
"assets-webpack-plugin": "^3.5.1",
"auth0-lock": "^10.18.0",
"axios": "^0.16.2",
"babel-preset-es2015": "^6.24.1",
"body-parser": "^1.17.1",
"cookie-parser": "^1.4.3",
"deepcopy": "^0.6.3",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"express-session": "^1.15.2",
"extract-text-webpack-plugin": "^2.1.0",
"mkdirp": "^0.5.1",
"mongodb": "^2.2.30",
"ncp": "^2.0.0",
"node-fetch": "^1.7.1",
"normalize.css": "^6.0.0",
"passport": "^0.3.2",
"passport-auth0": "^0.6.1",
"postcss-loader": "^1.3.3",
"preact": "^8.1.0",
"preact-compat": "^3.16.0",
"prop-types": "^15.5.8",
"purify-css": "https://github.com/kimkwanka/purifycss.git",
"purifycss-webpack": "^0.7.0",
"rc-css-transition-group": "^2.1.4",
"react-dom": "^16.0.0",
"react-ga": "^2.2.0",
"react-helmet": "^5.1.3",
"react-lazyload": "^2.2.7",
"react-redux": "^5.0.4",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"rimraf": "^2.6.1",
"session-file-store": "^1.1.1",
"source-map-support": "^0.4.15",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"webshot": "^0.18.0"
}
}