generated from chevalvert/boilerplate-webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.82 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
{
"name": "faraway-sketch",
"version": "1.3.0",
"description": "Quick sketch prototyping far-away interactions",
"scripts": {
"analyze": "cross-env NODE_ENV=production webpack -p --config config/webpack.config.prod.js --profile --json > stats.json && echo \"→ Stats.json created\" && echo \"→ Drop your file to https://chrisbateman.github.io/webpack-visualizer/\"",
"start": "cross-env NODE_ENV=development node scripts/serve.js",
"build": "cross-env NODE_ENV=production node scripts/build.js",
"deploy": "cross-env APP_ENV=ghpages npm run build && ghp build -f",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint --ext .js ./config ./scripts ./src --cache",
"lint:css": "stylelint ./src/**/*.scss ./src/**/*.css --cache",
"test": "ava --verbose",
"postversion": "git push && git push --tags && npm run deploy"
},
"aliases": {
"abstractions": "src/abstractions",
"components": "src/components",
"controllers": "src/controllers",
"utils": "src/utils",
"worker": "src/worker.js"
},
"ava": {
"require": [
"esm"
]
},
"author": "Arnaud Juracek",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/runtime": "^7.5.5",
"autoprefixer": "^7.1.2",
"ava": "^2.3.0",
"babel-loader": "^8.0.6",
"browser-sync": "^2.18.13",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.1",
"css-loader": "^0.28.4",
"csv-loader": "^3.0.3",
"eslint": "^4.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"esm": "^3.2.25",
"extract-text-webpack-plugin": "^3.0.0",
"fast-glob": "^3.0.4",
"fs-extra": "^5.0.0",
"ghp": "^1.6.0",
"handlebars": "^4.0.10",
"kool-shell": "^1.5.0",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.6",
"progress-bar-webpack-plugin": "^1.10.0",
"prop-types": "^15.6.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"stylelint": "^8.0.0",
"stylelint-order": "^3.1.1",
"stylelint-scss": "^3.10.1",
"webpack": "^3.4.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.18.2",
"webpack-merge": "^4.1.0",
"worker-loader": "^2.0.0"
},
"dependencies": {
"@internet/raf": "^0.2.1",
"hotkeys-js": "^3.8.1",
"missing-math": "^3.2.0",
"segseg": "^1.0.0"
},
"private": false,
"optionalDependencies": {},
"homepage": "https://github.com/chevalvert/faraway-sketch#readme",
"bugs": {
"url": "https://github.com/chevalvert/faraway-sketch/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:chevalvert/faraway-sketch.git"
}
}