forked from sarahjean/js-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.93 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
{
"name": "js-boilerplate",
"version": "1.0.0",
"description": "A boilerplate to be used as baseline for node hosting platform.",
"author": "Jason Enter",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/jenter/js-boilerplate.git"
},
"scripts": {
"prelocal": "babel-node buildScripts/devMessage.js",
"local": "NODE_ENV=development npm-run-all --parallel security-check sass build-dev lint:watch test:watch start-mockapi env-detect",
"sass": "node-sass --watch src/sass -o src --importer node_modules/node-sass-import",
"build-dev": "babel-node buildScripts/srcServer.js",
"env-detect": "babel-node buildScripts/envDetect.js",
"lint": "esw webpack.config.* scr buildScripts --color",
"lint:watch": "npm run lint -- --watch",
"security-check": "nsp check",
"test": "mocha --reporter progress buildScripts/testSetup.js \"src/**/*.test.js\"",
"test:watch": "npm run test -- --watch",
"generate-mock-data": "babel-node buildScripts/generateMockData",
"prestart-mockapi": "npm run generate-mock-data",
"start-mockapi": "babel-node src/api/mockAPIServer.js",
"clean-dist": "rimraf ./dist && mkdir dist",
"build-client": "babel-node buildScripts/build.js",
"build-server": "babel app.config.js buildScripts/* -d dist --presets env",
"prebuild": "npm run clean-dist",
"build": "NODE_ENV=production npm run build-client && npm run build-server",
"postbuild": "cp .env dist/.env 2>/dev/null || :",
"start": "node dist/buildScripts/distServer.js"
},
"devDependencies": {
"chai": "4.1.2",
"mocha": "3.5.3",
"nock": "9.0.14",
"nsp": "2.8.0"
},
"dependencies": {
"babel-cli": "6.16.0",
"babel-core": "6.17.0",
"babel-loader": "6.2.5",
"babel-preset-env": "^1.6.0",
"babel-register": "6.26.0",
"chalk": "^2.1.0",
"cheerio": "0.22.0",
"compression": "1.6.2",
"cross-env": "3.1.3",
"css-loader": "^0.25.0",
"eslint": "3.8.1",
"eslint-plugin-import": "2.0.1",
"eslint-watch": "2.1.14",
"express": "4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.11.2",
"html-webpack-plugin": "2.22.0",
"jsdom": "9.8.0",
"json-schema-faker": "0.3.6",
"json-server": "0.8.22",
"jsonapi-serializer": "^3.5.5",
"node-env-file": "^0.1.8",
"node-sass": "^4.5.3",
"node-sass-globbing": "0.0.23",
"node-sass-import": "^1.1.1",
"node-sass-watcher": "^0.5.1",
"nodemon": "^1.11.0",
"npm-run-all": "4.1.1",
"open": "0.0.5",
"postcss-loader": "^2.0.6",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"rimraf": "2.6.2",
"sass-loader": "^4.0.2",
"simple-oauth2": "^1.3.0",
"style-loader": "^0.13.2",
"tough-cookie": "^2.3.3",
"url-loader": "^0.5.7",
"webpack": "1.13.2",
"webpack-dev-middleware": "1.8.4",
"webpack-hot-middleware": "2.13.0",
"webpack-md5-hash": "0.0.5",
"whatwg-fetch": "2.0.3"
}
}