-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.6 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": "nina2017",
"version": "0.0.1",
"description": "Node Interactive North America 2017 interactive presentation slides",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server",
"clean": "node_modules/.bin/shx rm -rf dist/ && node_modules.bin/shx mkdir -p dist",
"styles": "node_modules/.bin/lessc styles/styles.less > dist/styles.css",
"build": "echo \"skipping build script for now\"",
"build:all": "npm run clean && npm run styles && npm run webpack",
"build:production": "NODE_ENV=production npm run webpack",
"webpack": "node_modules/.bin/webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mysamai/nina2017.git"
},
"author": "David Luecke <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/mysamai/nina2017/issues"
},
"homepage": "https://github.com/mysamai/nina2017#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"less": "^2.7.2",
"shx": "^0.2.2",
"uglify-js": "^3.1.0",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.8.2",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"brain.js": "^0.7.0",
"lodash": "^4.17.4",
"mobx-react": "^4.2.2",
"mysam": "^0.2.0-pre.1",
"mysam-ui": "0.0.3",
"natural": "^0.5.4",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"react-highlight": "^0.10.0"
}
}