This repository was archived by the owner on Feb 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.49 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.49 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
{
"name": "previewGenerator",
"version": "1.0.0",
"description": "Display a preview of the file you are looking in tracim",
"main": "src/index.jsx",
"scripts": {
"servdev": "NODE_ENV=development webpack-dev-server --port 8083 --watch --colors --inline --hot --content-base dist/",
"build": "NODE_ENV=production webpack -p",
"start-static-mockapi": "json-server --routes api/routes.json --watch api/static_db.json --port 3083",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Côme Huguiès",
"license": "ISC",
"standard": {
"globals": [
"fetch"
],
"parser": "babel-eslint",
"ignore": []
},
"devDependencies": {
"prop-types": "^15.5.10",
"webpack-dev-server": "^2.3.0"
},
"dependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"classnames": "^2.2.5",
"css-loader": "^0.28.4",
"file-loader": "^0.10.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-images": "^0.5.4",
"standard": "^8.6.0",
"standard-loader": "^5.0.0",
"style-loader": "^0.18.2",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1"
}
}