-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.31 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
{
"name": "sketch",
"version": "1.0.0",
"description": "a project for processing image pixels",
"main": "index.js",
"scripts": {
"run": "webpack-dev-server --host 0.0.0.0 --disableHostCheck",
"build": "webpack",
"test": "echo \"Error: no test specified\" && exit 1",
"clean:dist": "rimraf dist"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/doublelam/sketch.git"
},
"keywords": [
"sketch",
"image",
"process"
],
"author": "lam",
"license": "ISC",
"bugs": {
"url": "https://github.com/doublelam/sketch/issues"
},
"homepage": "https://github.com/doublelam/sketch#readme",
"devDependencies": {
"css-loader": "^0.28.4",
"dynamic-loader": "0.0.2",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"font-awesome-sass": "^4.7.0",
"html-webpack-plugin": "^2.29.0",
"node-sass": "^4.13.1",
"purescript-webpack-plugin": "^0.3.1",
"purs-loader": "^3.0.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"ts-loader": "^2.3.1",
"typescript": "^2.4.2",
"url-loader": "^0.5.9",
"webpack-typescript": "^0.5.6"
},
"dependencies": {
"font-awesome": "^4.7.0",
"pug": "^3.0.1",
"pug-loader": "^2.3.0",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.6.1"
}
}