-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.36 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
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "recipes-frontend",
"version": "0.1.0",
"description": "React frontend for the Recipe app",
"main": "index.js",
"scripts": {
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"prestart": "babel-node buildScripts/startMessage.js",
"start": "npm-run-all --parallel watch-css open:src lint:watch test:watch start-mockapi",
"open:src": "babel-node buildScripts/srcServer.js",
"lint": "esw webpack.confg.* buildScripts src --color",
"lint:watch": "npm run lint -- --watch",
"security-check": "npm audit",
"localtunnel": "lt --port 5000",
"share": "npm-run-all --parallel open:src localtunnel",
"pretest": "npm run build-css",
"test": "nyc mocha --reporter spec buildScripts/testSetup.js \"src/**/*.test.js\"",
"test:watch": "npm run test -- --watch",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"generate-mock-data": "babel-node buildScripts/generateMockData",
"prestart-mockapi": "npm run generate-mock-data",
"start-mockapi": "json-server --watch src/api/db.json --port 3009",
"clean-dist": "rimraf ./dist && mkdir dist",
"prebuild": "npm-run-all clean-dist build-css test lint",
"build": "babel-node buildScripts/build.js",
"postbuild": "babel-node buildScripts/distServer.js",
"deploy": "surge ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vjwilson/recipes-frontend.git"
},
"keywords": [
"recipes",
"frontend",
"javascript",
"es2015"
],
"author": "Van J. Wilson <van.wilson1992@alumni.unc.edu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vjwilson/recipes-frontend/issues"
},
"homepage": "https://github.com/vjwilson/recipes-frontend#readme",
"dependencies": {
"babel-polyfill": "^6.13.0",
"prop-types": "^15.5.10",
"react": "15.6.1",
"react-dom": "15.6.1",
"react-router-dom": "^4.2.2",
"whatwg-fetch": "2.0.0"
},
"devDependencies": {
"babel-cli": "6.16.0",
"babel-core": "6.17.0",
"babel-loader": "6.2.5",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.11.1",
"babel-register": "6.16.3",
"chai": "3.5.0",
"chalk": "1.1.3",
"cheerio": "0.22.0",
"compression": "^1.7.4",
"coveralls": "^2.13.1",
"cross-env": "3.1.3",
"css-loader": "0.25.0",
"cypress": "^3.4.0",
"enzyme": "^2.6.0",
"eslint": "3.8.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-react": "^6.8.0",
"eslint-watch": "2.1.14",
"express": "^4.17.1",
"extract-text-webpack-plugin": "1.0.1",
"fetch-mock": "^5.6.2",
"html-webpack-plugin": "2.22.0",
"jsdom": "9.8.0",
"json-schema-faker": "^0.4.7",
"json-server": "^0.15.0",
"localtunnel": "^1.9.2",
"mocha": "3.1.2",
"nock": "8.1.0",
"node-sass-chokidar": "0.0.3",
"npm-run-all": "3.1.1",
"nsp": "2.6.2",
"numeral": "1.5.3",
"nyc": "^11.0.3",
"open": "0.0.5",
"react-addons-test-utils": "15.4.1",
"rimraf": "2.5.4",
"sinon": "^1.17.6",
"style-loader": "0.13.1",
"surge": "^0.21.3",
"webpack": "1.13.2",
"webpack-dev-middleware": "1.8.4",
"webpack-hot-middleware": "2.13.0",
"webpack-md5-hash": "0.0.5"
}
}