-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.37 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
{
"name": "Reuser",
"version": "1.0.0",
"description": "A platform for sharing unused items.",
"main": "index.js",
"engines": {
"node": "6.2.1"
},
"scripts": {
"start": "node server/index",
"dev-nm": "nodemon server/index",
"dev-wp": "cd client && webpack-dev-server --hot --inline",
"test": "babel-tape-runner client/test/*.js | tap-spec",
"build": "cd client && webpack --progress --profile --colors",
"build:watch": "cd client && webpack --progress --profile --colors --watch",
"build-css": "node-sass --include-path scss client/scss/main.scss public/resources/styles/style.css",
"watch-css": "nodemon -e scss -x \"npm run build-css\"",
"prepare-deploy": "npm run build-css && npm run build"
},
"author": "Olwiba",
"license": "GPL-3.0",
"dependencies": {
"colors": "^1.1.2",
"material-ui": "^0.15.3",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-tap-event-plugin": "^1.0.0"
},
"devDependencies": {
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-tape-runner": "^2.0.1",
"enzyme": "^2.4.1",
"node-sass": "^3.8.0",
"nodemon": "^1.10.0",
"react-addons-test-utils": "^15.2.1",
"tap-spec": "^4.1.1",
"tape": "^4.6.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
}
}