-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.44 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
{
"name": "nier-automata-reliquary",
"version": "0.0.1",
"description": "Nier Automata Reliquary system",
"main": "index.js",
"scripts": {
"frontend:dev": "cross-env NODE_ENV=development webpack --config frontend/webpack.config.js --watch",
"frontend:prod": "cross-env NODE_ENV=production webpack --config frontend/webpack.prod.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "John Noel <[email protected]>",
"license": "MIT",
"repository": "github:johnnoel/reliquary",
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/lodash": "^4.14.168",
"@types/styled-components": "^5.1.9",
"autoprefixer": "^10.2.5",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.4.0",
"node-sass": "^5.0.0",
"postcss-loader": "^5.2.0",
"sass-loader": "^11.0.1",
"source-map-loader": "^2.0.1",
"ts-loader": "^8.1.0",
"webpack": "^5.28.0",
"webpack-cli": "^4.6.0",
"webpack-manifest-plugin": "^3.1.0",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"classnames": "^2.3.1",
"lodash": "^4.17.21",
"normalize.css": "^8.0.1",
"preact": "^10.5.13",
"sass-mq": "^5.0.1"
}
}