-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
32 lines (32 loc) · 949 Bytes
/
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
{
"name": "mind-map-search-engine",
"version": "1.0.0",
"description": "Visual search engine for mind maps on the web",
"license": "MIT",
"contributors": [
{
"name": "Angelo Gazzola",
"email": "[email protected]",
"url": "https://github.com/nglgzz"
}
],
"repository": "nikitavoloboev/knowledge-map-search-engine",
"scripts": {
"lint": "eslint .; sass-lint client/sass/* -v",
"build": "node-sass client/sass/ -o client/css/; postcss client/css/main.css --use autoprefixer --replace",
"start": "npm run lint; npm run build; http-server client/ -p 3000"
},
"dependencies": {
"http-server": "^0.9.0"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.9.0",
"node-sass": "^4.5.0",
"postcss-cli": "^3.2.0",
"sass-lint": "^1.10.2"
}
}