-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.67 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
{
"name": "aanchal-stories",
"description": "Stories from Aanchal Women's Aid",
"version": "1.0.1",
"author": "TABLEFLIP",
"license": "AGPL-3.0",
"private": true,
"dependencies": {
"autoprefixer": "^7.1.6",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"cssnano": "^3.10.0",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.1.2",
"postcss-calc": "^6.0.1",
"postcss-cli": "^4.1.1",
"postcss-custom-properties": "^6.2.0",
"postcss-import": "^11.0.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-helmet": "^5.2.0",
"react-markdown": "^2.5.0",
"react-responsive-embed": "^2.1.0",
"require-directory": "^2.1.1",
"tachyons": "^4.9.0",
"uploadcare-cdn": "^2.0.0"
},
"main": "n/a",
"scripts": {
"start": "run-s clean build watch",
"test": "standard",
"build": "run-p build:*",
"build:static": "rsync -a public/ dist",
"build:html": "node build/html.js",
"build:css": "postcss pages/main.css -o dist/bundle.css",
"watch": "run-p watch:*",
"watch:static": "nodemon -w public -e 'gif,png,webm,jpg' -x npm run build:static",
"watch:html": "nodemon -w facts.json -w pages -e js,json,svg -x npm run build:html",
"watch:css": "npm run build:css -- --watch",
"watch:serve": "browser-sync start --files 'dist/bundle.*' --files 'dist/*.html' --server dist --port 4000 --reload-delay 600",
"clean": "rm -rf dist"
},
"devDependencies": {
"browser-sync": "^2.18.13",
"nodemon": "^1.12.1",
"standard": "^10.0.3"
},
"browserslist": [
"> 0.1%",
"IE >= 9",
"last 4 versions"
]
}